
$(document).ready(function() {
	$(".tour a img").hover(
		function() {
			$(this).stop().animate({"opacity": "1"}, "normal");
		},
		function() {
			$(this).stop().animate({"opacity": ".75"}, "normal");
		}
	);
	Cufon.replace('#content h1, #content h2, #content h3', {
		fontFamily: 'Titillium 6'
	});
	Cufon.replace('.features .heading', {
		fontFamily: 'Titillium 6'
	});
	Cufon.replace('#top, #menu, #header .phone, table.comparison th, .comparison .price', {
		hover: true,
		fontFamily: 'Museo Sans 900'
	});
	Cufon.replace('#footer .heading', {
		fontFamily: 'Museo Sans 900'
	});
});

