$(document).ready(function(){

$("div.miniblog header.miniblog_title").hover(function() {
    $(this).css('background-color', '#E8E8E8');
},function(){
 $(this).css('background-color', 'white');
});

$("div.miniblog p.miniblog_content").hide();
  $("div.miniblog header.miniblog_title").click(function() {
$(this).parent('div.miniblog').children('p.miniblog_content').slideToggle('slow');
});

if ($.browser.msie) {
alert("LOL Internet Explorer, autor strony ma wyjebane na IE więc nawet się nie fatyguj ze zgłaszaniem złego wyswietlania itp.");
}
});