
$(document).ready(function(){
     $("div").each(function (i) {
                if ($(this).attr("name") =='mons')
                {
                        $(this).hide();
                }

        });

//alert("done")
//  var randomnumber=Math.floor(Math.random()*5);
//  var zx = 'mon'+randomnumber;
//  $("#"+zx).fadeIn(3000);

   $("li").click(function(event){
   });

 });


