$(document).ready(function(){	
$("a").click(function(){
$(this).blur();
});
$("li").mouseover(function(){
$(this).stop().animate({width:'280px'},{queue:false, duration:'slow', easing: 'easeOutExpo'})
$('.stripe').animate({marginTop:900},3000);
$('.stripe2').animate({marginTop:900},3500);
$('.stripe3').animate({marginTop:900},2500);
$('.stripe').animate({marginTop:0},3000);
$('.stripe2').animate({marginTop:0},3500);
$('.stripe3').animate({marginTop:0},3000);

});
$("li").mouseout(function(){
$(this).stop().animate({width:'100px'},{queue:false, duration:'slow', easing: 'easeOutExpo'})
});

});
