// Defaults

$(document).ready(function(){
	jQuery.easing.def = 'easeInOutExpo';
	
	$("#background").smartBackgroundImage(base_url + 'img/background.jpg',true);
	
	$(".logo").vAlign();
	
	$(".website-coming-soon").vAlign();
	
	$(".footer p").vAlignP();
	
	if (jQuery.support.opacity)
    {
        $(".photo-image").css("opacity",0);
        $(".photo-image")
		.load(function(){ //attach onload to set background-image
			$(this).fadeTo(500,0).fadeTo(2000,1);
		});
    }
});
