//vars
var timer = 0;

// JavaScript Document
$(document).ready(function() {
	//replace e-mail
	$('a').each(function(){
						var temp = $(this).attr('href').replace('[(ad)]','@').replace('[(dot)]','.');
						$(this).attr('href',temp);
						temp = $(this).html().replace('[(ad)]','@').replace('[(dot)]','.');
						$(this).html(temp);
						});
	/*//temporary fix when building
	$('a').each(function(){
						var temp = $(this).attr('href').replace('/nl','/new/nl');
						$(this).attr('href',temp);
						temp = $(this).attr('href').replace('/new/new','/new');
						$(this).attr('href',temp);
						});*/
						
	//cycle images if more than one
	if($('#pics img').size()>1){
		$('#pics').cycle('fade');
	}
})



