$(document).ready(function(){
		
		// CUFON
		Cufon.replace("#home-slogan h3, #home-slogan h3 strong", {textShadow: '1px 1px #494949'});
		Cufon.replace(".header h2, #contact-box a, #top-nav li a");
		//Cufon.replace("#offer-menu-inner a", { hover: true });
		//Cufon.replace("#offer-menu-inner a:hover", { color: 'red' });
		
		
		//Wyszukiwarka
		$('#search-module input, #contact_form input:text').each(function(){
			var thisf = $(this),
				fieldVal = thisf.val();
			thisf.focus(function() { if (thisf.val() == fieldVal) thisf.val(''); })
			.blur(function() { if (thisf.val()=='') thisf.val(fieldVal); });
		});
		
		$('#contact_form textarea').each(function(){
			var thisf = $(this),
				fieldVal = thisf.html();
			thisf.focus(function() { if (thisf.html() == fieldVal) thisf.html(''); })
			.blur(function() { if (thisf.html()=='') thisf.html(fieldVal); });
		});
		
		
		// MAIN SLIDER
		$('#home-slider').cycle({timeout: 3000, speed: 1100, fx: 'cover', pager:  '#slider-controls'});
		
		
		// HOME NEWS PAGINATION
		$('#home-news').pajinate({
			items_per_page: 2,
			nav_panel_id: '#home-news-nav'
		});
		
		
		// LAST LI
		$('#menu li:last-child').addClass('no-bg');
		$('#home-news li:last-child, #home-news li:odd').addClass('no-border');
		$('#top-nav li:last-child').addClass('last');
		
		
		// HOME COLS HEIGHT
		if ($('#home-content-left').height() > $('#home-content-right').height())
			$('#home-content-right').height($('#home-content-left').height());
		else
			$('#home-content-left').height($('#home-content-right').height());
		
			
		// HOME PARTNERS LOGOS
		$('#parners-logos ul').jcarousel({
			auto: 2,
			wrap: 'circular',
			scroll: 3,
			animation: 2250
		});
		
});
