/*$(".jagaimg").hide();
$(".jagaimg").fadeIn("slow");*/
$(document).ready(function(){
/*$(".jagaimg").fadeTo("fast", 1.0);*/
$(".jagaimg").fadeIn(600); 

$(".jagaimg").hover(function(){
$(this).fadeTo("fast", 0.8); 
},function(){
$(this).fadeTo("fast", 1.0); 
});


$(document).ready(function()
{
    //skryje msg_body
  $(".msg_body").hide();
    //toggle msg_body
  $(".msg_head").hover(function(){
     $(this).css('text-decoration','underline'); 
  },function(){
     $(this).css('text-decoration','none'); 
  });
  $(".msg_head").click(function()
  {
    if ($(this).next(".msg_body").is(":hidden")) {
		$(this).css({ "color":"#309AFE"});
        $(this).next(".msg_body").show("slow");
		$(this).next(".msg_body").css({ "background-color":"#F4F4EA"});
      } else {
        $(this).css({ "color":"#4E4E44"});
		$(this).next(".msg_body").hide("slow");
		$(this).next(".msg_body").css({ "background-color":"#fdfdfb"});
      }

    });

});

});