// this function is for the show and hide feature
$(document).ready(function() {
	$('.showhide h3').next('.subsection').hide();
	$('.showhide h3').click(function() {
		$(this).next('.subsection').slideToggle('500');
		$(this).toggleClass("active"); 
		return false;
	});
 });

$(document).ready(function() {
    $('.slideshow').cycle({
		fx:      'fade', 
    	speed:    800,
    	random: 0,
    	timeout: 3000
	});
document.getElementById('tempa').style.display = 'none';
document.getElementById('roty').style.display = 'block';
});
//countdown
$(function () {
		var austDay = new Date();
		austDay = new Date(austDay.getFullYear(), 3 - 1, 27);
		$('#nCountdown').countdown({until: austDay,layout: '{dn} {dl}, {hn} {hl}, {mn} {ml}, {sn} {sl}'});
		$('#year').text(austDay.getFullYear());
	});
//colorbox
$(document).ready(function(){
			$(".individual").colorbox({width:"400", height:"500"});
			$(".organization").colorbox({width:"400", height:"650"});
			
		});

function creditShow(x){
if (x=="y"){
document.getElementById('photog').style.display = 'inline';
}
}