/*-----------------------------------------------------------
    to encrypt e-mail address
    ---------------------------------------------------------*/
	
function noSpam() {
    if (document.getElementById) {
		var at = "@";
	  	var links = document.getElementsByTagName('a');
	  
	  	for (var i = 0; i < links.length; i++) {
		  	var linkElem = links[i];
			
		  	if (linkElem.className == 'email') {
		  		var mail = linkElem.firstChild; var domain = linkElem.lastChild;
		  		mail.nextSibling.firstChild.innerHTML = at;
		  		linkElem.href = "mailto:" + mail.data + at + domain.data;
		  	}
			
	  	} 
	  
    } 
}

/*-----------------------------------------------------------
    to start functions
    ---------------------------------------------------------*/
	 
$(function(){ 
	noSpam();
	//$(".flash").colorbox({href:"../content/flash.html"});
	$("a[rel='lightbox']").colorbox();
	$("a[href='http://www.euroweb-internet.de/cgi-bin/gbserver/books/1804.cgi']").colorbox({width:"600px", height:"80%", iframe:true});
	$(".colorbox").colorbox();
});

