Cufon.replace('#menu a');
Cufon.replace('h1');
Cufon.replace('.day');
Cufon.replace('.month');
Cufon.replace('h2');

var i=1;
var t;
var imageCount;

function timedBgSwap() {

$("#mp"+i).fadeOut(1000,function(){
	i++;
	if(i>imageCount) i=1;
	$("#mp"+i).fadeIn(1000);
});

t=setTimeout("timedBgSwap()",5000);

}

$(document).ready(function (){
	$("#mp1").show();
	imageCount = $(".menuPhoto").length;
	setTimeout("timedBgSwap()",5000)
	$(".galleryPhotos a").lightBox();
	
	$(".newsCategory").hover(function (){$(this).addClass("hover");}, function (){$(this).removeClass("hover");})
	
});
