//Handle home page animations

$(document).ready(function () {

	//On ie navigators, we don't do any animation (horrible aliasing on text)
	//tried many hacks without any success :(
	if(! $.browser.msie){

	$("#block0").fadeIn(500, function() {
		$("#block1 div").fadeIn(600, function() {
			$("#block2 div").fadeIn(600, function() {
				$("#block3 div").fadeIn(600, function() {
				});
			});
		});
	});
		$("#welcome-photo").fadeIn(2000, function() {	
		});

	}
	else { 
		$("#welcome-text").children().children().toggle();
		$("#welcome-photo").toggle();	
	}

});

//Handle credits click

$("#welcome-photo-credits").click(function() {
	alert("test");
});
