





Cufon.replace('.tangerine', { fontFamily : 'Tangerine' });

Cufon.replace('.josefin', { fontFamily : 'Josefin Sans Std'} );






$(function() {
	$("#navigation ul li").hover(function() {
		$(this).css({ 'z-index' : 100 });
		$(this).find(".dd").show();
		$(this).find("a:eq(0)").addClass('hover');
	}, function() {
		$(this).css({ 'z-index' : 1 });
		$(this).find(".dd").hide();
		$(this).find("a:eq(0)").removeClass('hover');
	});
	
	$('#slider').nivoSlider({
		effect : 'fade',
		directionNav : false,
		controlNav : false,
		keyboardNav : false,
		pauseTime : 5000
	});
});











