Cufon.replace('h1, h2, h3, h4, .headnav li a', {
	fontFamily: 'Raleway',
	hover: 'true',
	textShadow: '0 0 #000'
});

$(window).load(function() {
	$('.nivo').nivoSlider({
		controlNav: false,
		pauseOnHover: false,
		pauseTime: 5000
		
	});
});

$(function() {
	$(".carousel").jCarouselLite({
		btnNext: ".next",
		btnPrev: ".prev"
	});
});

$(document).ready(function() {
	// Fade images
	$('.gallery img').fadeTo('slow', 0.5);
	$('.gallery img').hover(function(){
		$(this).fadeTo('fast', 1.0);
	},function(){
		$(this).fadeTo('fast', 0.5);
	});
});
