/*
==========================================================================
Site: 			Subtv Media
File: 			case_studies.js
Version: 		1.0
Author: 		Roman Leinwather & Faren Gambril
Last updated: 	10/03/2009
==========================================================================

TABLE OF CONTENT

I.		Main Section Switching		
==========================================================================
*/

// I. Main Section Switching
$(function (){
	// hide the content boxes on load but first
	$('.content_box_cs').hide().filter(':first').show();
	
	$('#secondary_navigation ul li a').click(function() {
		
		// highlight the navigation
		$('#secondary_navigation ul li a').removeClass('selected');											  
		$(this).addClass('selected');	

		//hide all boxes but the selected 
		$('.content_box').hide().filter(this.hash).show();
		return false;
	});
});