$(document).ready(function(){

$(".miniblog .content").hide();
$(".miniblog .entry h4").click(function() {
 $(this).parent('.entry').children('.content').slideToggle('slow');
});

$("#noblesse").click(function(){
     alert("Noblesse oblige. May you become the Messiah.");
});
 
 function populateElement(selector, defvalue) {
   $(selector).each(function() {
       if($.trim(this.value) == "") {
           this.value = defvalue;
       }
   });
 
   $(selector).focus(function() {
       if(this.value == defvalue) {
           this.value = "";
       }
   });
   
   $(selector).blur(function() {
       if($.trim(this.value) == "") {
           this.value = defvalue;
       }
   });
 }

populateElement('#szukaj', 'Szukaj...');

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.");
}
});