var vis=false;

google.load("jquery", "1.4.2");

google.setOnLoadCallback(function() {
	candyLand();
	$('#top').click(function(){window.location='/'});
	$('#overlay_close').click(function(){toggleOverlay();});	
	$('h2 a').click(function(){toggleOverlay(this.href);return false;});	
	$('#bodysize').css('height',$('#content').height()+$('#header').height()+20);
});

function toggleOverlay(loadit) {
	if (!vis) {
		$('#olwrapper').load(loadit+'&ajax=1');
		$('#overlay').css('display','block');
		$('#overlay').animate({'top':'-220px'});
		$('#bodysize').css('height','2000px');	
		vis = true;
	} else {
		$('#overlay').animate({'top':'2000px'},function(){$('#overlay').css('display','none');});
		$('#bodysize').css('height',$('#content').height()+$('#header').height()+20);		
		vis = false;
	}
}

function candyLand() {
	//Init
	$('#names').css('display','none');
	$('#names').toggle(1500);
	//Create Stars
	createMarker(55,100,'http://www.ukkohallafishing.fi/','star');	
	createMarker(71,140,'http://www.ukkohallafishing.fi/','star');	
	createMarker(155,232,'http://www.ukkohallafishing.fi/','star');	
	createMarker(225,445,'http://www.ukkohallafishing.fi/','star');	
	createMarker(285,605,'http://www.ukkohallafishing.fi/','star');
	createMarker(334,693,'http://www.ukkohallafishing.fi/','star');	
	createMarker(322,840,'http://www.ukkohallafishing.fi/','star');		
	createMarker(104,120,'http://www.ukkohallafishing.fi/','star2');	
	createMarker(251,533,'http://www.ukkohallafishing.fi/','star2');	
	createMarker(251,533,'http://www.ukkohallafishing.fi/','star2');	
	createMarker(172,115,'http://www.ukkohallafishing.fi/','star3');	
	createMarker(282,509,'http://www.ukkohallafishing.fi/','star3');
	createMarker(282,509,'http://www.ukkohallafishing.fi/','star3');
	//Animate Elements
	$('#photo1').css('display','none');
	$('#photo2').css('display','none');
	$('#bodysize').css('overflow','hidden');	
	$('#contenholder').css('top','2000px');	
	$('#contenholder').animate({'top':'-50px'},function(){	$('#photo1').css('display','block');$('#photo1').css('left','50px');$('#photo1').animate({'left':'500px'}, function() {
	
	$('#photo2').css('display','block');$('#photo2').css('left','50px');$('#photo2').animate({'left':'600px'});
	});	});
}

function createMarker(t,l,addr,myclass) {
	var e = $('<div class="'+myclass+'"></div>');
	$(e).attr('title',addr);  	
	$(e).css('top',t);  
	$(e).css('left',l);  
	$(e).click(function(){loadContent(this);});
	$('#header').append(e);
	$(e).css('display','none');  	
	$(e).fadeIn(Math.floor(Math.random()*5000)); 
}

function loadContent(that) {
	window.location = that.title;
}


