$(document).ready(function() {
   Cufon.replace('h2', {'font-family': 'Myriad Pro', 'font-weight':'bold','hover':'true'});
   Cufon.replace('h3,div.topMenu a,div.telefon', {'font-family': 'Myriad Pro','hover':'true'});
});

$(document).ready(function()
{
  jQuery('div.baner h2').textShadow();		
	
	$('div.slogany').cycle({ 
	    fx:     'fade', 
	    speed:   1000, 
	    timeout: 3500, 
	    pause:   1 
	});
	
	
});	

//---------------------------------------------------------------------------
jQuery.fn.textShadow = function () {
    return this.each(function () {
        var el = $(this);
        jQuery('<span class="shadow">' + el.text() + '</span>').appendTo(el);
    });
};
