//
// HSTS jQuery
// 

// onload
$(document).ready(function(){
	
	// -----------------
	// bootcamp tabs
	// -----------------
	$(".bootcamp .tab-content").hide(); 			// hide all init
	$("div#content-1").show(); 						// show first one init
	$(".tabs .first_tab a").addClass('current');					// current first
	
	$('.bootcamp .tabs a').click(function(){
		$(".tabs li a").removeClass('current');
		
		$(".bootcamp .tab-content").hide();			// hide all
		var thisRel = $(this).attr('rel');
		
		$(this).addClass('current');
		
		$("div#content-"+thisRel).show();			// show single
		return false;
		
	});
	
	
});
