

$(document).ready(function(){
	
	//speed = 300;
	
	$('.offers>li:first div').css({display:'block'});
	
	$('.offers>li').mouseover(function(){
		if (!$(this).hasClass('act') && !$(this).hasClass('action')) {
			$('.offers>li').addClass('action').animate({width:'140px'},300,'swing').removeClass('act');
			$(this).animate({width:'378px'},500,'swing').addClass('act');
			setTimeout(function() { $('.offers>li').removeClass('action') },900);
		}
	});
	
	$('.offers>li').click(function(){
		window.location.href = $(this).children('a.desc').attr('href');
	});
	
});

