// js that runs stuff across the entire site
$(document).ready(function(){
	
	
	// text shadow for IE
	$(".featured-slider h2").textShadow();
	
	$("h2").textShadow({
		x:      1, 
		y:      1, 
		radius: 2,
		color:  "#ccc"
	});
	
	$("#content h3").textShadow({
		x:      1, 
		y:      1, 
		radius: 2,
		color:  "#ccc"
	});
	
	$("h4").textShadow({
		x:      1, 
		y:      1, 
		radius: 2,
		color:  "#ccc"
	});
	
});

