$(document).ready(function() {

	/*$(window).load(function(){
		$('.masthead img').rotate({
            duration:5000,
			angle: 0, 
            animateTo:90
          });
		  $('.logo_old').fadeOut(4000);
		  $('.logo_new').fadeIn(4000);
	});*/
	
	$('.page header').cycle('fade');
	
	$("#background img").cjObjectScaler({
		destObj: $("#background img").parent("#background"), // must be a jQuery object (required)
		method: "fill", // can either be fit or fill (default fill)
		fade: 0
	});
	
	$(window).resize(function(){
		$("#background img").cjObjectScaler({
			destObj: $("#background img").parent("#background"), // must be a jQuery object (required)
			method: "fill", // can either be fit or fill (default fill)
			fade: 0
		});
	});
	
});
