jQuery(document).ready(function(){
	lo = jQuery.cookie('logo');	
	if(lo == null) {
		setTimeout('fadeIn()',100);
		setTimeout('fadeOut()',2000);
		$.cookie('logo','showed', {expires:'1',path:'/'});
	} else {
		jQuery('#win').css("display","none");
	}
});

function fadeIn(){
	jQuery('#label').fadeIn("slow");
};

function fadeOut(){
	jQuery('#win').fadeOut("slow");
};

jQuery(function() {
    jQuery('#slideshow').cycle({
        //fx:     'scrollHorz',
		fx: 'scrollDown',
        speed:   1500,
        timeout: 7000,
        pager:  '#nav',
		//nowrap:  1,
		easing:  'backinout',
		//startingSlide: 2, // zero-based 
		//easeIn:  'bounceout', 
		//easeOut:  'bounceout', 
		//easeOut: 'backin', 
		//delay:   -2000,
        before: function() { 
            $('#caption').html(this.alt);
        }
    });
});
