$(function() {     
	$('#main,#main-show,#portfolio-splash').hide();
	setTimeout(function() {
	$('#main,#main-show,#portfolio-splash').fadeIn(400); //Fade in animation time lapse 
		});
	$(document).ready(function() {
	$("a").not("#no-pg-ani,.jspArrow").click(function() {
	$("#main,#main-show,#portfolio-splash").fadeOut(800); //Fade out animation time lapse 
	var href = $(this).attr('href');
	setTimeout(function() {window.location = href}, 850); //Delayed followthrough to allow fadeout 
	return false;
		});
	});
});
