$(document).ready(function(){
	//  Initialize Backgound Stretcher	   
	$(document).bgStretcher({
		images: ['/images/content/backgrounds/bg1.jpg', '/images/content/backgrounds/bg2.jpg', '/images/content/backgrounds/bg3.jpg', '/images/content/backgrounds/bg4.jpg'],
		imageWidth: 1200, imageHeight: 700, nextSlideDelay:10000, slideShowSpeed:500
	});
		
	
	$(window).resize(function() {
		windowResized();
	});
	
	function windowResized(){
		if (($(window).height() - 212) > $contentHeight){
			$('#content').css('height', $(window).height() - 212);
		}
		else{
			$('#content').css('height', $contentHeight);
		}
		
	}
	$contentHeight = $('#content').height() + 60;
	windowResized();
	
	Shadowbox.init({
		overlayOpacity: "0.8",
		players:    ["swf"]
	});
});
