$(function(){
	/** FANCYBOX */
	$(".gallery a[href*=.jpg]").fancybox();
	
	/** bxSlider */
	$("#slider ul").bxSlider({
		infiniteLoop: true,
		easing: "swing",
		auto: true,
		pause: 5000
	});
	
	/** MENU */
	$(".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');
		}
	);
	
	/** CHAT */
	$(".chat").click(function(){
		var _src = $(this).attr("href");
		window.open (_src , "Chat", "menubar=1,resizable=1,width=453,height=280");
		return false;
	});
});
