$(function(){

	$('.bodycontent ul li:nth-child(odd),.bodycontent ol li:nth-child(odd)').addClass('odd');
	
/* ------------------ <HR> ----------- */
$('hr').wrap('<div class="hr"></div>');
$('div.hr hr').hide();

/* ------------------ Sitemap ----------- */

if($('#SiteMap').length){
		$('<div id="pageTitle">Sitemap</div>').insertBefore('#SiteMap');	
}


	// Insert Location into detail page
	if($('.ceLocation').text() != ''){
	$('.ceLocation').prepend('<span>LOCATION: </span>');
	}
	
	$('.ceDate, .postInformation ').prepend('<span>DATE POSTED: </span>');

/* -------------------- Photogallery --------------- */
		$('#main div.myslides').each(function(){
		
			var $this = $(this);
			var slidesHeight = $this.height();
			var newHeight = slidesHeight - 10;
		
			$this.css('height', newHeight);
		
		});

});
