/*   
=============================================================================== 
Base jQuery file
...............................................................................
                                                                        2010/02
------------------------------------------------------------------------------- 
COPY / USE AT YOUR OWN SITE'S RISK
=============================================================================== 
*/
jQuery(document).ready( function() {
	jQuery(".nav_hang a").hover(
		function() {
			jQuery(this).closest("li").not(".noHover").addClass("hover");
		},
		function() {
			jQuery(this).closest("li").not(".noHover").removeClass("hover");
		}
	);
	// Quick Search
	jQuery("#form_quicksearch input[type=text]").each( function() {
		var inputVal = jQuery(this).val();
		if (inputVal) {
			jQuery(this).siblings("label").hide();
		}
		jQuery(this).focus( function() {
			jQuery(this).siblings("label").fadeOut("fast");
		});
		jQuery(this).blur( function() {
			var inputVal = jQuery(this).val();
			if (inputVal = "" || !inputVal ) {
				jQuery(this).siblings("label").fadeIn("fast");
			}
		});
	});
});
