$(document).ready(function(){

  //$("div.containerOff").mouseover(function(){
  //	$(this).removeClass().addClass("containerOver");
  //}).mouseout(function(){
  //	$(this).removeClass().addClass("containerOff");		
  //});
	
	//Fix Errors - http://www.learningjquery.com/2009/01/quick-tip-prevent-animation-queue-buildup/
	
	//Remove outline from links
	$("a.mainlink").click(function(){
		$(this).blur();
	});
	
	//When mouse rolls over
	$("a.mainlink").mouseover(function(){
		$(this).stop().animate({padding:'15px'},{queue:false, duration:600, easing: 'easeInOutQuad'})
	});
	
	//When mouse is removed
	$("a.mainlink").mouseout(function(){
		$(this).stop().animate({padding:'10px'},{queue:false, duration:600, easing: 'easeInOutQuad'})
	});
    	
});

