jQuery(document).ready(function(){

	var $j = jQuery.noConflict();

	//Remove outline from links
	$j("#menu a").click(function(){
		jQuery(this).blur();
	});
	
	//When mouse rolls over
	$j("#menu li").mouseover(function(){
		$j(this).stop().animate({height:'300px'},{queue:false, duration:600})
	});
	
	//When mouse is removed
	$j("#menu li").mouseout(function(){
		$j(this).stop().animate({height:'24px'},{queue:false, duration:600})
	});
	
});
