$(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
	});
		
	jQuery('#mycarousel').jcarousel({
		wrap: 'circular',
		scroll: 1,
		itemVisibleInCallback: {onBeforeAnimation: mycarousel_itemVisibleInCallback},
		itemVisibleOutCallback: {onAfterAnimation: mycarousel_itemVisibleOutCallback}
	});
	
	
	$('#textSpots').cycle({
		fx: 'fade',
		speed: 500,
		timeout: 10000
	});
	
	$(window).resize(function() {
		windowResized();
	});
	
	function windowResized(){
		$('#textSpots').css('height', $(window).height() - 377);
	}
	
	windowResized();
		
});
