$(document).ready(function(){ 
$("div.ceny").hide();
$("div.pokarzceny").each(function(){ var thisArticle = this; $("p.hide", thisArticle).hide();
$("p.hide a, p.show a", thisArticle).click(function(){ $("p.hide, p.show, div.ceny", thisArticle).toggle(); return false; });});
});

$(document).ready(function(){ 
$('.submenu').hide();
$(".sub").bind("mouseenter", function(){ $(".submenu").show();});
$(".submenu").bind("mouseleave", function(){ $(".submenu").hide();});
});