function HideShow(obj, text){

    if ($("div."+ obj).is(':hidden')) {
        $("div."+ obj).show();
        $(text).children("strong.right").html("<img src='/media/animated-arrow-up.gif'> sbalit");
        $.cookie("sh_"+ obj, null);

    } else {
        $("div."+ obj).hide();
        $(text).children("strong.right").html("<img src='/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("strong.right").html("<img src='/media/animated-arrow.gif'> rozbalit");
        }
        else {
            $("div."+ this).show();
            $("div."+ this).prev().children("strong.right").html("<img src='/media/animated-arrow-up.gif'> sbalit");
        }
      });
}

$(document).ready(function(){
    initHideShow();
});
