//nav
  $(document).ready(function(){
	$("#nav_479405 li a").wrapInner("<span></span>");
  });
 $(function(){
	$("#nav_479405 li").hover(
	function() {
	// mousehover
      $(this).children("ul").show();
    }, 
      function () {
	  // mouseout
        $(this).children("ul").hide();
      });
	$("#nav_479405 li ul li").hover(
      function () {
	  // mouseout
        $(this).children("ul").hide();
      });
  });
//products menu
$(function(){
	$(".product-list ul li").hover(
	function() {
	// mousehover
      $(this).children("ul").show();
    }, 
      function () {
	  // mouseout
        $(this).children("ul").hide();
      });
  });

//pre populate
/*jQuery(document).ready(function(){
    jQuery('input#FullName').autofill({
      value: 'Name',
      defaultTextColor: '#999',
      activeTextColor: '#808386'
    });
  });*/




