$(document).ready(function(){
	
	//Fix Errors - http://www.learningjquery.com/2009/01/quick-tip-prevent-animation-queue-buildup/
	
	//Remove outline from links
	$("#universenavigation a").click(function(){
		$(this).blur();
	});
	
	//When mouse rolls over
	$("li.uninavi").mouseover(function(){
		$(this).stop().animate({height:'100px'},{queue:false, duration:600 })
	});
	
	//When mouse is removed
	$("li.uninavi").mouseout(function(){
		$(this).stop().animate({height:'30px'},{queue:false, duration:600 })
	});
	$("li.uninavi4").mouseover(function(){
		$(this).stop().animate({height:'155px'},{queue:false, duration:600})
	});
	//When mouse is removed
	$("li.uninavi4").mouseout(function(){
		$(this).stop().animate({height:'30px'},{queue:false, duration:600 })
	});
	
});
