$(document).ready(function() {

	
	//generic styling //
	
	$(".sfmenu:first a").css('border-left','none');
		$(".left-sidebar").height($(".content").height()); 
		$("#sidebarLogos").show();
	
	//  Initialize Backgound Stretcher
	$('BODY').bgStretcher({
		images : ['/images/body-bg.jpg'],
		imageWidth : 1698,
		imageHeight : 1131,
		anchoring : 'left center',
		anchoringImg : 'left center'
	});

	$("ul.sf-menu").superfish({
		delay : 0,
		autoArrows : true,
		dropShadows : true
	});

	$(".sf-with-ul").hover(function() {
		$(this).find('span').show();
	}, function() {
		$(this).find('span').hide();
	});

	$('#slides').slides({
		preload : true,
		preloadImage : 'images/loading.gif',
		play : 5000,
		pause : 2500,
		hoverPause : true,
		animationStart : function(current) {
			$('.caption').animate({
				bottom : -35
			}, 100);
		},
		animationComplete : function(current) {
			$('.caption').animate({
				bottom : 0
			}, 200);
		},
		slidesLoaded : function() {
			$('.caption').animate({
				bottom : 0
			}, 200);
		}
	});
	
	
});

