$(document).ready(function()
{
var count = 5;
$('.prod li:nth-child('+count+')').nextAll().hide();

$('.sliding').toggle(function()
{
$(this).parent().find('.prod li:nth-child('+count+')').nextAll().show();
$(this).text("zwiń liste");
return false;
}, 
function()
{
$(this).parent().find('.prod li:nth-child('+count+')').nextAll().hide();
$(this).text("rozwiń liste");
return false;
});
});
