$(document).ready(function(){
				
	$("#hero > div").remove();
	
	/* Start slideshow */
	$('#hero').cycle({
		fx:     'fade',
		speed:  'fast',
		random: 0,
		timeout: 5000
	});
	
	/* Set Section Titles */
	var currentTemplateVariable = $("body").attr("class").split(/\s/);
	currentTemplateVariable = currentTemplateVariable[currentTemplateVariable.length -1];
	currentTemplateVariable = currentTemplateVariable.replace('pagevariable', '');
	var sectionname = $("#hiddensubnav").find("#pageid" + currentTemplateVariable);
	sectionname = sectionname.find("a").html();
	$("#subnav h2").html(sectionname);
	

	/* Remove block column if it's empty */
	if ($("#blockcolumn").is(":empty")) {
		$("#blockcolumn").remove();
	}
	
	
});
