//nav
$(document).ready(function(){
	$('#nav_581023 li a').each(function(){
    var me = $(this);
    me.html( me.text().replace(/(^\w+)/,'<span>$1</span>') );
  	});
	$('#nav_613076 li a').each(function(){
    var me = $(this);
    me.html( me.text().replace(/(^\w+)/,'<span>$1</span>') );
  	});

	$("#nav_581023 li").hover(
	function() {
	// mousehover
      $(this).children("ul").show();
    }, 
      function () {
	  // mouseout
        $(this).children("ul").hide();
      });
	$("#nav_581023 li ul li").hover(
      function () {
	  // mouseout
        $(this).children("ul").hide();
      });
	
//products menu
	$(".product-list ul li").hover(
	function() {
	// mousehover
      $(this).children("ul").show();
    }, 
      function () {
	  // mouseout
        $(this).children("ul").hide();
      });

//pre populate
    jQuery('#siteSearch input#CAT_Search').autofill({
      value: 'site-wide search',
      defaultTextColor: '#000',
      activeTextColor: '#000'
    });
    jQuery('#songSearch input.CAT_txtKeywords').autofill({
      value: 'song search',
      defaultTextColor: '#000',
      activeTextColor: '#000'
    });
  });




