$(document).ready(function(){
	//  Initialize Backgound Stretcher	   
	$(document).bgStretcher({
		images: ['/images/content/backgrounds/ulasim.jpg'],
		imageWidth: 1100, 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();
	
});
