$(document).ready(function(){
	//  Initialize Backgound Stretcher	   
	$(document).bgStretcher({
		images: ['/images/content/backgrounds/kurslar-orta-seviye-1.jpg', '/images/content/backgrounds/kurslar-orta-seviye-2.jpg', '/images/content/backgrounds/kurslar-orta-seviye-3.jpg', '/images/content/backgrounds/kurslar-orta-seviye-4.jpg'],
		imageWidth: 1200, imageHeight: 800, 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();
	
});
