$(function(){
	$('.left a').next('.dropDown').prev('a').hover(function(){
		$(this).addClass('tempHover');
		$(this).next('.dropDown').show();
	}, function(){
		$(this).removeClass('tempHover');
		$(this).next('.dropDown').hide();
	});

	$('.dropDown').hover(function(){
		$(this).show();
		$(this).prev('a').addClass('tempHover');
	}, function(){
		$(this).hide();
		$(this).prev('a').removeClass('tempHover');
	});
});
