//nav
$(document).ready(function(){
	$('#nav_686176 li').hover(
		function() {
		// mousehover
		$(this).children('ul').show();
    }, 
      	function () {
	  	// mouseout
		$(this).children('ul').hide();
    });
  
//table
	$('.specRow').appendTo('#specsTable tbody');
	$('#specsTable tr:even').css('background', '#f3e2ec');

});

// sold

    function AddProductExtras(catalogId,productId,ret) {
        var td = document.getElementById('catProdTd_'+productId);
        if (td.innerHTML == 'Sold')
           td.innerHTML = 'Product added successfully.';
           }





