//nav
  $(document).ready(function(){
	$("#nav_14623 li a").wrapInner("<span></span>");
  });
 $(function(){
	$("#nav_14623 li").hover(
	function() {
	// mousehover
      $(this).children("ul").show();
    }, 
      function () {
	  // mouseout
        $(this).children("ul").hide();
      });
	$("#nav_14623 li ul li").hover(
      function () {
	  // mouseout
        $(this).children("ul").hide();
      });
  });
 
//products menu
/*
$(function(){
	$("#nav_856757 li").click(
	function() {
      $(this).find("ul").toggle('fast');
});
}); */



//pre populate
jQuery(document).ready(function(){
    jQuery('input#CAT_Search').autofill({
      value: 'Search',
      defaultTextColor: '#808184',
      activeTextColor: '#808184'
    });
    jQuery('input#SZUsername').autofill({
      value: 'Login ID',
      defaultTextColor: '#808184',
      activeTextColor: '#808184'
    });
    jQuery('input#SZPassword').autofill({
      value: 'Password',
      defaultTextColor: '#808184',
      activeTextColor: '#808184'
    });
    jQuery('input#FullName').autofill({
      value: 'Name',
      defaultTextColor: '#808184',
      activeTextColor: '#808184'
    });
    jQuery('input#EmailAddress').autofill({
      value: 'Email',
      defaultTextColor: '#808184',
      activeTextColor: '#808184'
    });
    jQuery('input#CAT_Custom_145361').autofill({
      value: 'How you heard about us',
      defaultTextColor: '#808184',
      activeTextColor: '#808184'
    });
  });




