/**
 * @author Yarov
 */
$(document).ready(function(){
	
	//Remove outline from links
	$("a").click(function(){
		$(this).blur();
	});
	
	//When mouse rolls over
	$("#menu ul li").mouseover(function(){
		$(this).children("span.anima").stop().animate({width:'160px'},{queue:false, duration:400, easing: 'easeOutBounce'})
	});
	
	//When mouse is removed
	$("#menu ul li").mouseout(function(){
		$(this).children("span.anima").stop().animate({width:'5px'},{queue:false, duration:400, easing: 'easeOutBounce'})
	});
	
});