$(window).load(function(){
    $('#offers-list').css('height', $('#offers-list').height());
    var func = function(){ 
		$('#banner-menu .li-special a').css('opacity','0.1'); 
		var f2 = function(){ $('#banner-menu .li-special a').css('opacity',1); };
		setTimeout(f2, 300);
	}; 
	
	setInterval(func,1500);
});

$(document).ready(function(){
	
	
	
	
    $('.image-list').cycle('fade');
    
    $('#batch').cycle({
        timeout: 10000
    });
    
    $('a.confirm').click(function(e){
        var title = $(this).attr('title');
        
        if (title == null || title.length == 0) 
            title = 'Sei sicuro di voler compiere l\'azione';
        
        return confirm(title + '?');
    });
	$('#login-switch').click(function(e){
		e.preventDefault();
		$('#login-panel').show();		
		return false;
	});
	$('#login-panel .close').click(function(e){
		e.preventDefault();
		$(this).closest('#login-panel').fadeOut();		
		return false;
	});
	
	
	
	$('#offers-list .offer-wrapper').hide();
	$('#offers-list.expand-offers .offer-wrapper').show();
});

