$(document).ready(function(){
	
	/* ---------- Add Relevant Classes to Lists ------ */
	if($.browser.msie){
	$('#sectionMenu ul.rmRootGroup li:nth-child(odd),.bodycontent ul li:nth-child(odd),ol li:nth-child(odd),.bodycontent table tr:nth-child(odd), #content .BlogFeatureList ul li:nth-child(odd)').addClass('odd');
	}
	
	// Replace <hr /> tags
	$("hr").wrap("<div class='hr'></div>");
	
	// Insert sitemap title
	$('<div id="pageTitle"><div class="breadCrumb">Sitemap</div></div>').insertBefore('#SiteMap');	
	
	// Insert Location into detail page
	$('.ceLocation').prepend('<span>LOCATION: </span>');
	$('.ceDate, .postInformation ').prepend('<strong>Date Posted: </strong>');
	/* -------------------- Photogallery --------------- */
	$('div.myslides','#content,.left-col3').each(function(){
	
		var $this = $(this);
		var slidesHeight = $this.height();
		var newHeight = slidesHeight - 10;
	
		if($this.find('img').length > 0){
		$this.css('height', newHeight);
		}
	
	});
	
});
