function href_click(linka) {
	window.location.href=linka;
}

////// new comment start ////////
$(document).ready(function(){
    $("h4.mitem").click( function() {
        var id =  $(this).attr("id");
        var htmlStr = $("div#_"+id);

         htmlStr.slideToggle("fast");


    });


});
//////// new comment end //////
