$(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").mouseover(function(){
		
		
		$(this).removeClass('bg2').addClass("bg1"); 
		
		
		
		
	});
	
	//When mouse is removed
	$("li").mouseout(function(){
		
		
		$(this).removeClass('bg1').addClass("bg2");
	});
	
});




