$(document).ready(function(){
	
	// Splash Tabs Navigation
	$('#stageNavigation .bodycontent > ul > li').filter(':nth-child(1)').attr('id','#stageNursery');
	$('#stageNavigation .bodycontent > ul > li').filter(':nth-child(2)').attr('id','#stageInfant');
	$('#stageNavigation .bodycontent > ul > li').filter(':nth-child(3)').attr('id','#stageJunior');
	$('#stageNavigation .bodycontent > ul > li').filter(':nth-child(4)').attr('id','#stageComprehensive');
	
	var tabContainers = $('#stageSections > div');
		//tabContainers.hide().filter('#divfirst').show();
	//tabContainers.css({'opacity':'0'});
	
	$('#stageNavigation .bodycontent > ul > li').click(function () {
			
		var $this = $(this);
		var currentId = $this.attr('id');
		
		if ($this.hasClass('selected')){
			
			tabContainers.filter(currentId).animate({'top':'355px', 'opacity':'hide'});
			$this.removeClass('selected');
			
			}else{
			
			tabContainers.animate({'top':'355px', 'opacity':'hide'});
		
			tabContainers.filter(currentId).animate({'top':'0px', 'opacity':'show'});
			
			$('#stageNavigation .bodycontent > ul > li').removeClass('selected');
			$(this).addClass('selected');
			
			}
	}).addClass('tab').hover(function(){
		$(this).addClass('hover');	
	},function(){
		$(this).removeClass('hover');
	});
	
	// Replace <hr /> tags
	$("hr").wrap("<div class='hr'></div>");
	
	//Insert Events Title Index Page
	$('#sidebar div.RadGrid').wrapInner('<div id="radScroll"></div>');
	
	/* ----------------------- Styled Scrollbars ---------- */
	var column2 = $('.column2').length;
	if (column2 > 0){$('.column2 .BlogFeatureList').jScrollPane();}
	
	var radScroll = $('#sidebar div.RadGrid #radScroll').length;
	if (radScroll > 0){$('#sidebar div.RadGrid #radScroll').jScrollPane();}
	
	/*
	var newsboxList = $('.column2 .BlogFeatureList ul li').length;
	if(newsboxList > 2){
	$('.column2 .BlogFeatureList ul li').css({'width':'200px', 'padding-right':'0px !important'});
	$('.column2 .BlogFeatureList').css({'height':'209px','margin-bottom':'10px'});
	}
	*/
	/* ------------------------ Slideshow ----------------- */
	var imgAlt = $('body #content .imgAltCaption').parent().find('img').width();
	$('body .imgAltCaption').css({'width': imgAlt - 40 + "px"});
	
	if($('#SiteMap').length){
		$('<div id="pageTitle">SITEMAP</div>').insertBefore('#SiteMap');	
	}
	
	
	/* --------- Share Icon Anchor -------- */
	var rssShareLink = $('.column2 .blogentries style+div a').attr('href');
	$('#share .share1 a[href=""]').attr({'href':rssShareLink});

	/* -------------------- Photogallery --------------- */
	$('#main div.myslides').each(function(){
	
		var $this = $(this);
		var slidesHeight = $this.height();
		var newHeight = slidesHeight - 10;
	
		$this.css('height', newHeight);
	
	});

});
