$().ready(function() {
					
	/*........... @ right-col dividers ...........*/

	$('#nav li:last-child, #nav li ul li:last-child, #specials li:last-child').addClass('last');
	
	//cufon
	Cufon.replace('#leftCol h2#title, #rightCol h1#news');
	Cufon.replace('#leftCol h1, #rightCol h1#welcome,#content h2.title', {textShadow: '#7e7c69 1px 1px'});
	Cufon.now(); //ie
 
 //carousel
 $("#gallery, .gallery").jCarouselLite({
     btnNext: ".next",
     btnPrev: ".prev",
     circular: false
 });
 
 
 
 });




//suckerfish
sfHover = function() {
	var sfEls = document.getElementById("nav").getElementsByTagName("LI");
	for (var i=0; i<sfEls.length; i++) {
		sfEls[i].onmouseover=function() {
			this.className+=" sfhover";
		}
		sfEls[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
		}
	}
}
if (window.attachEvent) window.attachEvent("onload", sfHover);

//date

function setDate(){
	new Date();
	var d = new Date();
	document.write(d.getFullYear()); 
}
