$(document).ready(function(){

// Home Nav
	$('#home #nav a.learnMore').click(function(){
		$(this).toggleClass("on");
		$(this).css('outline','none');
		var parentElem=$(this).parent().parent().attr('id');
		
		if($('#'+parentElem+' .moreInfo').css('display')=='block'){
			$('#'+parentElem+' .moreInfo').slideUp('normal');
			$('#'+parentElem).removeClass('current');
		}else{
			$('#'+parentElem+' .moreInfo').slideDown('normal');
			$('#'+parentElem).addClass('current');
		}
		return false
	}).filter(':last').click();
// END Home Nav

// Home Primary
	var tabContainers = $('div#primaryContent > div');
	
	$('#tabs ul a').click(function () {
		tabContainers.hide().filter(this.hash).show();
		
		$('#tabs ul a').removeClass('selected');
		$(this).addClass('selected');
		
		return false;
	}).filter(':first').click();
// END Home Primary

// More Links
	$('.show').show();
	$('.show-cont').hide();
	
	$('.show').click(function(){
		$(this).parent().next('.show-cont').slideDown('normal');
		$(this).fadeOut('normal');
		
		return false
	})
// END More Links

// Sponsorship Opportunities
	$('#opps h4 + div').hide();	
	$('#opps h4 a').click(function() {
		$(this).parent().next('div').slideToggle('slow');
		return false
	})
// END Sponsorship Opportunities
});