Cufon.replace('.top>a');
Cufon.replace('.top>span');
Cufon.replace('.home_cat');



$(document).ready(function() {
	
	
	$(".info_toggler").click(function () {
		
		currentID = $(this).attr("id");
		
		idA = currentID.split("_");
		
		theID = idA[1];
		
		display = $("#fi_"+theID).css("display");
		
		if(display == "none")
		{
		
		
		
		
		$(this).html("<u>Less Info</u>  &#187;");
				
		$("#fi_"+theID).css("display","block");
		}
		else
		{
		
		
		
		
		$(this).html("<u>More Info</u>  &#187;");
				
		$("#fi_"+theID).css("display","none");
		
		}
		
		});
	
	
	
	
	
	$(".event_image").imgZoom({opacity:0,showOverlay:true});
	
	
	$('.event_detail:last').css({"background":"none"});
	
	
	
	
	});
