jQuery(document).ready(
function()
{
jQuery("#show1").click(
function(){
jQuery("#menu1").toggle("normal");
}
).toggle(function(){jQuery(this).css('padding-bottom','3px');},function(){jQuery(this).css('padding-bottom','0px');});

jQuery("#show2").click(
function(){
jQuery("#menu2").toggle("normal");
}
).toggle(function(){jQuery(this).css('padding-bottom','3px');},function(){jQuery(this).css('padding-bottom','0px');});

jQuery("#show3").click(
function(){
jQuery("#menu3").toggle("normal");
}
).toggle(function(){jQuery(this).css('padding-bottom','3px');},function(){jQuery(this).css('padding-bottom','0px');});

jQuery("#show-all").click(
function(){
jQuery(".nav ul").toggle("normal");
}
).toggle(function(){jQuery(this).attr('value','Zwiń wszystko');},function(){jQuery(this).attr('value','Rozwiń wszystko');});

});
