$(document).ready(function(){
	$('#tab-one').click( function() { $('#tab-two-content').hide(); $('#tab-three-content').hide(); $('#tab-one-content').show(); $('#tab-two').attr('src','/assets/student/public/images/have-insurance.gif'); $('#tab-three').attr('src','/assets/student/public/images/other-products.gif'); $(this).attr('src','/assets/student/public/images/need-insurance-selected.gif'); } );
	$('#tab-two').click( function() { $('#tab-one-content').hide(); $('#tab-three-content').hide(); $('#tab-two-content').show(); $('#tab-one').attr('src','/assets/student/public/images/need-insurance.gif'); $('#tab-three').attr('src','/assets/student/public/images/other-products.gif'); $(this).attr('src','/assets/student/public/images/have-insurance-selected.gif'); } );
	$('#tab-three').click( function() { $('#tab-one-content').hide(); $('#tab-two-content').hide(); $('#tab-three-content').show(); $('#tab-one').attr('src','/assets/student/public/images/need-insurance.gif'); $('#tab-two').attr('src','/assets/student/public/images/have-insurance.gif'); $(this).attr('src','/assets/student/public/images/other-products-selected.gif'); } );
	$('#tab-two-content').hide(); $('#tab-three-content').hide(); $('#tab-one-content').show();
	
	$('#tab-two').trigger('click');//shutdown enrollment
	// $('#tab-one').hide();//shutdown enrollment links
	
});
