function HideShow(obj, text){


    if ($("div."+ obj).is(':hidden')) {
        $("div."+ obj).show();
        $(text).children("span.right").html("<img src='http://www.nejceny.cz/media/animated-arrow-up.gif'> sbalit");
        $.cookie("sh_"+ obj, null);

    } else {
        $("div."+ obj).hide();
        $(text).children("span.right").html("<img src='http://www.nejceny.cz/media/animated-arrow.gif'> rozbalit");
        $.cookie("sh_"+ obj, 'show');
    }
}

function initHideShow(){
   var hsDiv = new Array();
       hsDiv[0] = "marker_box";
       hsDiv[1] = "parametric";

       $(hsDiv).each(function () {
        if ($.cookie("sh_"+this)) {
            $("div."+ this).hide();
            $("div."+ this).prev().children("span.right").html("<img src='http://www.nejceny.cz/media/animated-arrow.gif'> rozbalit");
        }
        else {
            $("div."+ this).show();
            $("div."+ this).prev().children("span.right").html("<img src='http://www.nejceny.cz/media/animated-arrow-up.gif'> sbalit");
        }
      });
}

$(document).ready(function(){


    initHideShow();
});
