// podmiana bkgd
	function thebackground() {
		$('div.swap_bkgd img').css({ opacity: 0.0 });
		setTimeout(function() {
			$('div.swap_bkgd img:first').css({ opacity: 1.0 });
			setInterval('change()', 5000);
		}, 0);
	}
	
	function change() {
		var current = ($('div.swap_bkgd img.show')? $('div.swap_bkgd img.show') : $('div.swap_bkgd img:first'));
		if ( current.length == 0 ) current = $('div.swap_bkgd img:first');
		var next = ((current.next().length) ? ((current.next().hasClass('show')) ? $('div.swap_bkgd img:first') : current.next()) : $('div.swap_bkgd img:first'));
		next.css({ opacity: 0.0 }).addClass('show').animate({ opacity: 1.0 }, 500);
		current.animate({ opacity: 0.0 }, 500).removeClass('show');
	};






$(document).ready(function() {


// animacja banerkow na start
	$('#baners img').hover(
		function() {
			$(this).siblings('span').stop().animate({width: '195px'}, 222);
			$(this).stop().animate({
				height: '140px',
				width: '205px'
			}, 222);

		},
		function() {
			$(this).siblings('span').stop().animate({width: '180px'}, 222);
			$(this).stop().animate({
				height: '127px',
				width: '190px'
			}, 222);
		}
	);
	


	
// odsun kontakt w lewym menu w dol
	$("#menu_sidebar ul li").last().animate({marginTop: '15px'}, 300);


// odtwarzanie swf z linku
	$("a[rel^='prettyPhoto']").prettyPhoto();


// podmiana bkgd
	if($('div.swap_bkgd')[0]) {
		thebackground();
		$('div.swap_bkgd').fadeIn(1000); // works for all the browsers other than IE
		$('div.swap_bkgd img').fadeIn(1000); // IE tweak
		$('div.swap_bkgd').height($(document).height());
	}

});






$(window).resize(function(){

	// zmien rozmiar kontenera z przenikajacymi sie obrazami tla na taki jak document
	if($('div.swap_bkgd')[0]) { $('div.swap_bkgd').height($(document).height()); }

});

