$(function(){
	$('.nav .container .left .dropDown').prev('a').hover(function(){
		$(this).next('.dropDown').show();
	}, function(){
		$(this).next('.dropDown').hide();
	});

	$('.dropDown').hover(function(){
		$(this).show();
		//change header class
		$(this).prev('a').addClass('tempHover');
	},function(){
		$(this).hide();
		$(this).prev('a').removeClass('tempHover');
	});

	/* IE hack for the slideshow */
	if($.browser.msie){
		$('.imageflow').css("z-index","-1");
	}

});
