$(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
	$("li.black").mouseover(function(){
									 
		$(this).stop().animate({height:'130px'},{queue:false, duration:600, easing: 'easeOutBounce'})
		$(this).css({'background-color':'#000000'});
		$(this).css({'-moz-border-radius': '10px'});
		$(this).css({'border-radius': '10px'});
			

	});
	
	//When mouse is removed
	$("li.black").mouseout(function(){
		$(this).stop().animate({height:'23px'},{queue:false, duration:600, easing: 'easeOutBounce'})
		$(this).css({'background-color':'#333333'});
		$(this).css({'-moz-border-radius': '0px'});
		$(this).css({'border-radius': '0px'});

	});
	

	// Para links sem subitems

	$("li.blacksingle").mouseover(function(){
									 
		//$(this).stop().animate({height:'150px'},{queue:false, duration:600, easing: 'easeOutBounce'})
		$(this).css({'background-color':'#000000'});
		$(this).css({'-moz-border-radius': '10px'});
		$(this).css({'border-radius': '10px'});

	});
	
	//When mouse is removed
	$("li.blacksingle").mouseout(function(){
		//$(this).stop().animate({height:'30px'},{queue:false, duration:600, easing: 'easeOutBounce'})
		$(this).css({'background-color':'#333333'});
	});



});
