// section content switch
$(document).ready( function(){
	$('#switch p:not(:first)').hide();
	$('#switch p:first').addClass('open');
	
	$('a.show-more').hover(function(e) {
		e.preventDefault();
		$('#switch p:visible').hide();
		$('a.open').removeClass('open');
		$(this).next().slideDown('slow');
		$(this).addClass('open');
	});

});



// Main navigation

$(document).ready(function(){
	
	$('ul#main-navigation a')
	
		.css( {backgroundPosition: "-20px 48px"} )
		
		.mouseover(function(){
			
			$(this).stop().animate({backgroundPosition:"(-20px 96px)"}, {duration:100})
			
		})
		
		.mouseout(function(){
			
			$(this).stop().animate({backgroundPosition:"(40px 48px)"}, {duration:200, complete:function(){
				
				$(this).css({backgroundPosition: "-20px 48px"})
				
			}})
			
		})
		
});

// Flyout menu 

$(document).ready(function() {
	$('#k12 .inner, #cu .inner, #flik .inner').hide();
	$('#k12 img').hover(function() {
		$('#k12 .inner').slideToggle('fast');
		$('#cu .inner, #flik .inner').hide();
		
	});
	$('#cu img').hover(function() {
		$('#cu .inner').slideToggle('fast');
		$('#k12 .inner, #flik .inner').hide();
		
	});
	$('#flik img').hover(function() {
		$('#flik .inner').slideToggle('fast');
		$('#k12 .inner, #cu .inner').hide();
		
	});
	
});