$(function() {			
			$('.call_to_action').mouseover(function(){
				$(this).animate({boxShadow: '0 0 10px #eca187'},{queue:false,duration:250})
			});
			
			$('.call_to_action').mouseout(function(){
				$(this).animate({boxShadow: '0 0 1px #111'},{queue:false,duration:250})
			});
		});

