$(document).ready(function(){

    // schova zobrazi boxi s produktama na uvodni strance :-)
	$(".box-header").click(function() {
		$(this).parent().children("div.box-body").show("slow", function callback() {
			$(this).stop();
			$(this).parent().children(".box-header").children("h2").children("span").children(".arrow").css("background-image", "url('/img/engine/adm/arrow-up.gif')");
		});
		$(this).parent().children("div.box-body").hide("slow", function callback() {
			$(this).parent().children(".box-header").children("h2").children("span").children(".arrow").css("background-image", "url('/img/engine/adm/arrow-down.gif')");
		});
 //                  // $(this).slideUp("slow");
	});

    $(".msg_box").click(function() {
        $(this).fadeTo(400, 0);
        $(this).slideUp("fast");
    });

});  

