$(function(){
	
	$('#nav').superfish({autoArrows:  false});
	
	var currLocation = location.pathname.substring(1);
	if (currLocation == 'deals.php'){
		$('.fourColLeft').hide();
	}
	
	//$(submenus).addClass('arrow');
	
	/*
$('#nav li a').click(function(){
		var target = $(this).attr('title');
		var $targetSub = $('#drop ul#' + target);
		var $otherSubs = $('#drop ul').not($('#' + target))
		
		if ($targetSub.length) {
			if ( $targetSub.is(':hidden')) {
				$otherSubs.slideUp();
			   $targetSub.slideDown();
			   return false;
			}
			return false;
		}

		
	});
*/
	
	//$('#drop').mouseleave(function(){
	//	$('#drop ul:visible').stop(true, true).slideUp();
//	});
});
