$(function(){
	
	var newsBox = $('#newsBox .BlogFeatureList ul li');
	
	if(newsBox.length > 4){
		$('#newsBox .BlogFeatureList ul','body.indexBody').bxSlider({
		   mode:'vertical',
		   infiniteLoop: true,
		   displaySlideQty: 4,
		   moveSlideQty: 1,
		   pager:false
		});
	}
	
	// Replace <hr /> tags
	$("hr").wrap("<div class='hr'></div>");
	
	// Add Sitemap Title
	$('<div id="pageTitle">Sitemap</div>').insertBefore('#SiteMap');
	
	/* -------------------- Photogallery --------------- */
	$('#content div.myslides').each(function(){
	
		var $this = $(this);
		var slidesHeight = $this.height();
		var newHeight = slidesHeight - 10;
	
		if($this.find('img').length > 0){
		$this.css('height', newHeight);
		}
	
	});
	
});
