$(document).ready(function() {

	$('#add-another-delegate').click(function() {
		
		if($("#delegate6").is(":visible")) { $("#delegate7").fadeIn("slow"); $("#add-another-delegate").hide(); }
		if($("#delegate5").is(":visible")) { $("#delegate6").fadeIn("slow"); }
		if($("#delegate4").is(":visible")) { $("#delegate5").fadeIn("slow"); }
		if($("#delegate3").is(":visible")) { $("#delegate4").fadeIn("slow"); }
		if($("#delegate2").is(":visible")) { $("#delegate3").fadeIn("slow"); }
		if($("#delegate1").is(":visible")) { $("#delegate2").fadeIn("slow"); }
	  	if($("#delegate0").is(":visible")) { $("#delegate1").fadeIn("slow"); }

	});
        
});



$(document).ready(function() {
	$('div.hide').hide();
	$('#course-content2').hide(); 
		$('#tablinkone').click(function() {
		  $('#course-content2').fadeOut("fast"); 
		  $('#course-content3').fadeOut("fast"); 
		  $('#course-content1').fadeIn("slow");
		});
		$('#tablinktwo').click(function() {
		  $('#course-content1').fadeOut("fast"); 
		  $('#course-content3').fadeOut("fast"); 
		  $('#course-content2').fadeIn("slow");
		});
		$('#tablinkthree').click(function() {
		  $('#course-content1').fadeOut("fast");
		  $('#course-content2').fadeOut("fast");
		  $('#course-content3').fadeIn("slow");
		});	
});
	

	
function ShowHideTabs(showdiv) {
		$('div.course-listing').hide(); 
		$(showdiv).show(); 
}





$(document).ready(function() {
$("a[href$='.pdf']").addClass('external').click(function() { window.open($(this).attr('href'), null, "height=600,width=400,status=yes,resizable=yes,toolbar=no,menubar=no,location=no"); return false; });

$("a[href$='&print=1']").addClass('print').click(function() { window.open($(this).attr('href'), null, "height=600,width=400,status=yes,resizable=yes,toolbar=no,menubar=no,location=no"); return false; });
});
