$(document).ready(function(){
	
	//Remove outline from links
	$("a").click(function(){
		$(this).blur();
	});
	
	/* 12-23-2010 - Disabled on request from Matt
	//When mouse rolls over
	$("div.menu").mouseover(function(){
		$(this).stop().animate({top:'-100px'},{queue:false, duration:500, easing: 'jswing'})
		$(this).animate({height:'288px'},{queue:false, duration:650})		
	});
	
	//When mouse is removed
	$("div.menu").mouseout(function(){
		$(this).stop().animate({top:'0px'},{queue:false, duration:500, easing: 'easeOutBounce'})
		$(this).animate({height:'188px'},{queue:false, duration:400})
	});
	*/
	
});
