jQuery(window).load(function() {
				
				var config = {
					over: lightOn,
					timeout: 10,
					out: lightOff2
				};
				jQuery("div#nav a").hoverIntent(config);
				
				jQuery("div#nav").mouseleave(function() {
					lightOff();
				});
				

	jQuery("a.submit_field").click(function(event) {
		event.preventDefault();
		jQuery("div#search_frame").find("form").submit();
	})	;

});
			function lightOn() {
				
				var pos = jQuery(this).attr("id");	
					
				if(jQuery.browser.msie) {
					jQuery("div#lighting").css("filter", "0");	
					jQuery(this).parent().parent().find("div#lighting").removeClass().addClass("a_" + jQuery(this).attr("id")).css({"filter" : "100", "backgroundPosition" : jQuery(".a_" + jQuery(this).attr("id")).css("backgroundPosition")});
				}
				else {
				
					jQuery(this).parent().parent().find("div#lighting").removeClass().addClass("a_" + pos).animate({
						"opacity" : 1
					}, 150);

				}	
				
			}
			
			function lightOff2() {
				//Do nothing 
			}
			
			function lightOff() {
				if(jQuery.browser.msie) {
					jQuery("div#lighting").css("filter", "alpha(opacity=0)");
					jQuery("div#lighting").removeClass();
				}
				else {
				
					jQuery("div#lighting").animate({"opacity" : 0}, "medium", function() {
						jQuery("div#lighting").removeClass();	
					});
					
				}
			}

