$(function(){
	var category = getCurrentCategory();
	$("#categoryTitle").text(category);
	if(category.toLowerCase() != "churches"){
	    $("#churchCopy").hide();
	}
	//$("#t2"+category).children("a").attr("style","display:none");//background-position: 0 -64px;
});


function getCurrentCategory(){
    var category = "Churches";///default to this if nothing passed in the url
    var split = window.location.toString().split('?');
	if(split.length < 2)return category;
	split = split[1].split('=');
	if(split.length < 2)return category;
	category = split[1];
	return category;
}
