// JavaScript Document

$(document).ready(function() {
	//Determine if title tag for /tag/ pages needs to show
	showTagTitle();
});

function showTagTitle() {
	var currentUrl = window.location.toString().toLowerCase();
	if(currentUrl.indexOf("/tag/") > -1) {
		$("body").find("#tagheader").show();	
	}
}
