/* 2010 SLICKFISH STUDIOS 
	FADE UP PAGES AND FADE OUT PAGES
*/

/* WHOLE BODY FADE */

$(document).ready(function() {
	$("body").css("display", "none");
 
	$("body").fadeIn(2000);
 
	$("a.transition").click(function(event){
		event.preventDefault();
		linkLocation = this.href;
		$("body").fadeOut(1000, redirectPage);
	});
 
	function redirectPage() {
		window.location = linkLocation;
	}
});



/*$(document).ready(function() {

$("body").css("display", "none");
$("div").css("display", "none");

$("body").fadeIn(2000);
$("div").fadeIn(2000);

$("a.transition").click(function(event){
event.preventDefault();
linkLocation = this.href;
$("body").fadeOut(1000, redirectPage);
$("div").fadeOut(1000, redirectPage);
});

function redirectPage() {
window.location = linkLocation;
}

});*/
