$(document).ready(function(){
  $('video').mediaelementplayer({
     flashName: "/_mediaelement/flashmediaelement.swf",
     videoHeight: 360,
     videoWidth: 640
   });
   
	$('#jumbotron').cycle({
		fx: 'scrollHorz',
		timeout: 8000,
		easing: 'easeInOutCubic',
		pager: '#jumbotron_controller',
		pagerAnchorBuilder: buildCycleNav,
		pause: true
	})	
	
	$('#sidebar_nav.programs').accordion({
		autoHeight: false,
		collapsible: true,
		active: '.active',
		header: '.handle',
		icon: false,
		clearStyle:true
	});
	
	$('#content .boards ul').columnize({
	  columns: 3, 
	  width: 144
	});
	
});

function buildCycleNav(i, elem){
	i++;
	return '<a href="#">'+i+'</a>'
}
