$(document).ready(function(){
	Cufon.replace('h1');
	Cufon.replace('h2');
	Cufon.replace('h3');
	Cufon.replace('ul.mainmenu li a');
	
	
/* 	$('.teaser-fce-inner').fadeIn(750); */


	// if calendar on page
	if($('.timeslot-0').length>0) {
		
		// Loop through all timeslots, find max, and set the timeslot heights to this
		for(i=0; i<=2; i++) {
			var maxHeight = 0;
	
			$('.timeslot-'+i).each(function(){
				if($(this).height()>maxHeight) {
					maxHeight = $(this).height();
				}
			});
			
			$('.timeslot-'+i).height(maxHeight);
		}
		
	}
});
