
//*-----JQUERY FUNCTIONS-----*//

$(document).ready(function(){
	
	//*-----COLUMNIZER FUNCTION-----*//
	
	$('.columnize').columnize({ columns: 2 });
	
	//*-----IE BOX SHADOW FUNCTION-----*//
	
/*	if ($.browser.msie) {
		$('#Speakers li img, #Leaders li img, #HomeSpeakers .shadow').boxShadow( 0, 0, 3, "BBB");
	}*/
	
	//*-----COLOR ALTERNATING FUNCTION-----*//
	
	$('#Program li:nth-child(4n), #Program li:nth-child(4n-1)').addClass('brown');
	$('.home_speakers_wide ul li:nth-child(5)').css('margin-right', '0px');
	
	//*-----ABOUT CYCLE FUNCTION-----*//
	
	$('.slideshow').cycle({
		fx: 'fade',
		speed: 'slow',
		timeout: 4000
	});
	
	$('.home_about_slideshow').cycle({
		fx: 'fade',
		speed: 'slow',
		timeout: 4000
	});
	
	//*-----KEYNOTE LIST FUNCTION-----*//
	
/*	$('#HomeSpeakers ul').makeacolumnlists({ cols: 2, colWidth: 161, equalHeight: false, startN: 1 });*/
	
	//*-----TESTIMONIALS LIST FUNCTION-----*//
	
	$('#Testimonials ul').makeacolumnlists({ cols: 2, colWidth: 455, equalHeight: false, startN: 1 });
	
	$.supersized({
		slides  :  	[ {image : 'wp-content/themes/campus/im/background.jpg'} ]
	});
	
});

