$(document).ready(function(){
    // Menu
    $("#navigation ul").superfish({
                delay:       1000,                            // one second delay on mouseout
                animation:   {opacity:'fast',height:'show'},  // fade-in and slide-down animation
                speed:       'slow',                          // faster animation speed
                autoArrows:  false,                           // disable generation of arrow mark-up
                dropShadows: false                            // disable drop shadows
	});

    $(".categories_tree_child").each(function() {
        var array = $(this).find("li");
        array.each(function(index, value) {
			if (index != (array.length - 1))
			$(this).append(", ");
        });
    });
	
	$(".productPropertiesTable tr:even").css({"background":"#c0e7f4"});
	$(".productPropertiesTable td:nth-child(1)").css({"width":"250px"});
	
	$(".price-table td:nth-child(1)").css({"width":"80%"});
	$(".price-table td:nth-child(2)").css({"text-align":"center"});
	$(".price-table tr:even").css({"background":"#f5f5f5"});
	$(".my-goods tr:odd").css({"background":"#f5f5f5"});
	/*$('ul.categories_tree_list li:nth-child(3)').css({margin : '0 0 3px 0'});*/
});
