/* ----------------------------------------------------------
	title		  : VBC Framework
	created		  : 4/21/09
	last updated  : 9/1/09
---------------------------------------------------------- */
jQuery.noConflict();     
jQuery(document).ready(function($){



//feature area
$('.feature-nav li a').each(function(i){
	
	var currIndex = i + 1;
	
	$(this).click(function(){
		$(this).parent('li').addClass('activeFeature').siblings('li').removeClass('activeFeature');
		$('#feature-' + currIndex).show('normal').siblings('div').hide('fast');
		return false;
		});
	
	})

//load first feature
$('.feature-nav li a:first').click();



/* New Here */
$('#new-here a:contains("about us")').click(function(){
	$('.feature-nav li:contains("Welcome")').addClass('activeFeature').siblings('li').removeClass('activeFeature');
	$('#feature-2').show('normal').siblings('div').hide('fast');
	return false;
	});

$('#new-here a:contains("get involved")').click(function(){
	$('.feature-nav li:contains("Schedule")').addClass('activeFeature').siblings('li').removeClass('activeFeature');
	$('#feature-3').show('normal').siblings('div').hide('fast');
	return false;
	});




// staff slider

if ( $('#adminbar #toolbar').length > 0 ) {
	
	$('#expander').css({margin: "5em 0", background: "#c7b59d"}).prepend('<h2>Expander Area</h2> <p>The dark background will not show to end users, this is only here to help you see the difference in this region versus the normal regions.</p>');

} else {

	$('#expander .element').hide();
	
	$('#expander .title').css({
		padding: '6px 10px 6px 40px',
		background: '#BEAC94 url(/Websites/valleybaptist/templates/vbcTheme/css/img/expand-arrow.gif) no-repeat scroll 10px 12px'
		});
	
	$('#expander .container').css('cursor','pointer').click(function (){
		$('.title', this).toggleClass("active");
		$(this).next('.element').toggle('slow');
	});

}

});//end doc ready