Cufon.replace('.font_1',  { fontFamily: 'JackInput', hover:true });

$(function(){
	
	/** MENU */
	$('.wrap-header .menu ul li').hover(
	function() {
		$(this).addClass("active");
		$(this).find('ul').stop(false, true).slideDown();
	},
	function() {
		$(this).removeClass("active");        
		$(this).find('ul').stop(false, true).slideUp('fast');
	});

	/** bxSlider */
	$("#slider").bxSlider({
		auto: true,
		controls: false,
		pause: 8000
	});
	/** GALLERY */
	$(".gallery a").attr('rel', 'gallery');
	$(".gallery a").fancybox();
});
