var input_text;$(document).ready(function(){  $('a[rel=lightbox]').fancybox({		'transitionIn'	: 'elastic',		'transitionOut'	: 'elastic',		'titlePosition' : 'over'	});    $('.input_text').focus(function(){        input_text = $(this).val();        $(this).val('');    });    $('.input_text').blur(function(){        if(!$(this).val()) $(this).val(input_text);    });    if($('.slideshow_m_fade').length > 0) slideShow(0.6);/*    if(!getCookie('ad_bp')){        setCookie('ad_bp', 1, 6);        $.fancybox({            // href: '/pocztowy_25_07_2011_mswia_478_242_2.swf',            href: '/kartka-wigilia2011-mswia-sound.swf',            type: 'swf',            width: 810,            height: 543        });    }*/});function slideShow(op) {	$('.slideshow_m_fade div').css({opacity: 0.0});	$('.slideshow_m_fade div:first').css({opacity: 1.0});	$('.slideshow_m_fade .caption').css({opacity: op});	$('.slideshow_m_fade .caption').css({width: $('.slideshow_m_fade div').find('img').css('width')});	$('.slideshow_m_fade .content').html($('.slideshow_m_fade div:first').find('img').attr('alt')).animate({opacity: 1.0}, 400);	setInterval(function(){gallery(op);},8000);}function gallery(op) {	var current = ($('.slideshow_m_fade div.show').length ?  $('.slideshow_m_fade div.show') : $('.slideshow_m_fade div:first'));	var next = ((current.next().length) ? ((current.next().hasClass('caption'))? $('.slideshow_m_fade div:first') :current.next()) : $('.slideshow_m_fade div:first'));	var caption = next.find('img').attr('alt');	next.css({opacity: 0.0}).addClass('show').animate({opacity: 1.0}, 1000);	current.animate({opacity: 0.0}, 1000).removeClass('show');	$('.slideshow_m_fade .caption').animate({opacity: 0.0}, { queue:false, duration:50 }).animate({top: '-' + $('.slideshow_m_fade .caption').height() + 'px'}, { queue:true, duration:300, complete:function(){ $('.slideshow_m_fade .content').html(caption); }});	$('.slideshow_m_fade .caption').animate({opacity: op},100 ).animate({top: '0px'},500 );}function getCookie(c_name) { var i,x,y,ARRcookies=document.cookie.split(";"); for (i=0;i<ARRcookies.length;i++)   {   x=ARRcookies[i].substr(0,ARRcookies[i].indexOf("="));   y=ARRcookies[i].substr(ARRcookies[i].indexOf("=")+1);   x=x.replace(/^\s+|\s+$/g,"");   if (x==c_name)     {     return unescape(y);     }   } } function setCookie(c_name,value,exhours) { var exdate=new Date(); exdate.setHours(exdate.getHours() + exhours); var c_value=escape(value) + ((exhours==null) ? "" : "; expires="+exdate.toUTCString()); document.cookie=c_name + "=" + c_value; }
