$(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
	$(".xtrig").mouseover(function(){
		$(this).stop().animate({padding:'10px',margin:'0px'},{queue:false, duration:200})

	});
	
	//When mouse is removed
	$(".xtrig").mouseout(function(){
		$(this).stop().animate({margin:'10px',padding:'0px'},{queue:false, duration:200})
		
	});
	
});
