var applyHover = new Class({
	initialize: function(selector, classname){
		$$(selector).addEvents({
			'mouseover': function(){
				this.addClass(classname);
			},
			'mouseout': function(){
				this.removeClass(classname);
			}
		});
	}
});

window.addEvent('domready', function() {
	new applyHover('.menu li', 'hover');
	new applyHover('#headlogo','hover');
	new applyHover('.large','largehover');
	new applyHover('.small','smallhover');
	new applyHover('.long','longhover');
	new applyHover('#holidaydestinations dl','hover');
});

Cufon.replace('h1, .h1mimic, h2, .h2mimic, h3',{fontFamily: 'HelveticaNeueLight'});