$(document).ready(function(){
	var p;
	$("#map, #popUp").mouseover(function(){
		clearTimeout(p);
		var x = $(window).height() + $(window).scrollTop();
	
		if ( x < 836 ){
			$("#popUp").css("top","-20px")
		}
		//$("#popUp").show();
	}).mouseout(function(){
		p = setTimeout(function(){$("#popUp").hide().css("top","196px");},1000)
	});	
	$("#sppSearchTerm").change(function(){
		window.location = "/spp/search-results.asp?industry_id=" + $(this).val();
	});
});
