$(function(){
	$('.pop').hide();
	$('.pop').css('visibility','visible');
	$('#main-nav li.drop').hoverIntent(function(){
		$(this).find('a').not('.pop a').addClass('nav-here');
		$(this).find('.pop').show();
	},
	function(){
		$(this).find('a').not('.pop a').removeClass('nav-here');
		$(this).find('.pop').hide();
	});
	$('#row-1 input.submit').hoverIntent(function(){
		$(this).attr("src","/dress/search-submit-on.gif");
	},
	function(){
		$(this).attr("src","/dress/search-submit.gif");
	});
	
	//preload the abover rollover image.
	pic1 = new Image(26,20); 
	pic1.src = "/dress/search-submit-on.gif";
	
});
