$(document).ready(function(){
	
	//Fix Errors - http://www.learningjquery.com/2009/01/quick-tip-prevent-animation-queue-buildup/

	//Remove outline from links
	$("a").click(function(){
		$(this).blur();
	});
	//When mouse rolls over
	$("#menu > div").mouseover(function(){
		$(this).children("li.yellow").stop().animate({width:'202px'},{queue:false, duration:600, easing: 'easeOutBounce'})
	});
	
	//When mouse Click
	//$("#firm").click(function(){
		//$("#li1").stop().animate({width:'115px'},{queue:false, duration:600, easing: 'easeOutBounce'})
	//});
	
	//When mouse is removed
	$("#menu").mouseout(function(){
		$("li.yellow").stop().animate({width:'101px'},{queue:false, duration:600, easing: 'easeOutBounce'})
	});

	
});