// expand morelinks
$(function() {
	$("span[@class^='morelink_']").click(function() {
		var id = ($(this).attr('class'));
		var id = id.substring(id.indexOf("_")+1,id.indexOf(" "));
		$(this).animate({ height: 'hide', opacity: 'hide' },'slow');
		$("#"+id).animate({ height: 'show', opacity: 'show' },'slow');
	});
	$("span[@class^='lesslink_']").click(function() {
		var id = ($(this).attr('class'));
		var id = id.substring(id.indexOf("_")+1,id.indexOf(" "));
		$("#"+id).slideUp("fast");
		$(".morelink_"+id).show("slow");
	});
	$("#mainHeader").click(function(){
		window.location="/";
	});
	
	
	/*
	setTimeout(ScrewIt, 204000);
	//setTimeout(ScrewIt, 1000);
	var zzx = true;
	function ScrewIt()
	{
		html = $('body').html();
		if (zzx)
		{ 
			$('body').html("<p><br><br><center><span style='font-size: 56pt; color: pink;'>FAILBOAT</center>");
			$('body').css('backgroundColor','orange');
		}
		else
		{
			$('body').html("<p><br><br><center><span style='font-size: 56pt; color: green;'>I LIKE TURTLES</center>");
			$('body').css('backgroundColor','pink');
		}
		zzx = !zzx;
		
		setTimeout(ScrewIt, 150);
	};
	*/
	
});     
