$(document).ready(function(){	
    $("#karnisze li img").hover(function() {
        $(this).next($('strong')).fadeIn("slow");
    }, function() {
        $(this).next($('strong')).fadeOut("slow");
    });

    $("#rolety li img").hover(function() {
        $(this).next($('strong')).fadeIn("slow");
    }, function() {
        $(this).next($('strong')).fadeOut("slow");
    });

    $("#akcesoria li img").hover(function() {
        $(this).next($('strong')).fadeIn("slow");
    }, function() {
        $(this).next($('strong')).fadeOut("slow");
    });

    $("#menu_side ul").each(function(i) {
        $(this).children("li:last").addClass("noborder");
    });

    $("#menu_side h2 a").click(function() {
        $(this).parent().next("ul").slideToggle("slow");
    })
});
