//nav
jQuery(document).ready(function(){						   
	jQuery("#nav_662852 li").hover(
	function() {
	// mousehover
      jQuery(this).children("ul").show();
    }, 
      function () {
	  // mouseout
        jQuery(this).children("ul").hide();
    });
});

//pre populate
/*$(document).ready(function(){
    jQuery('input#CAT_Search').autofill({
      value: 'SEARCH',
      defaultTextColor: '#73002e',
      activeTextColor: '#73002e'
    });
});*/




