//Background
$(function(){
		   $('#supersize').hide();
		   $('#supersize').delay(500).fadeIn(900)
});

$(function(){
	$.fn.supersized.options = {
			startwidth: 1280,
			startheight: 800,
			vertical_center: 1,
			slideshow: 0,
			navigation: 0,
			transition: 1,
			pause_hover: 0,
			slide_counter: 0,
			slide_captions: 0,
			slide_interval: 6000
		};
		
		$('#supersize').supersized();	
});	


