$(document).ready(function (){
	$("#res").hide();
	$("#btn_resources").click(function () {
		$("#res").slideToggle("slow");
		$(this).toggleClass("active");
		return false;
	});
	$('a#btn_chat').hover(function() {
		var currentImg = $('#icon_chat').attr('src');
		$('#icon_chat').attr('src', $('#icon_chat').attr('hover'));
		$('#icon_chat').attr('hover', currentImg);
		$("#btn_chat").stop();
		$("#btn_chat").animate({ 
			width: "70px"
      	}, 150 );
	}, function() {
		var currentImg = $('#icon_chat').attr('src');
		$('#icon_chat').attr('src', $('#icon_chat').attr('hover'));
		$('#icon_chat').attr('hover', currentImg);
		$("#btn_chat").stop();
		$("#btn_chat").animate({ 
			width: "28px"
      	}, 150 );
	});
	//$(function() { $("#nav ul").lavaLamp({ fx: "easeOutBack", speed: 700 })});

	// if leadform exists, apply validator
	if ($("#LeadForm").length > 0) {
		$("#LeadForm").validate();
	}
	
	// FancyBox initiation
	// ZOOM
	if ($("a.zoomable").length > 0) {
		$("a.zoomable").fancybox({
			'zoomOpacity'			: true,
			'overlayShow'			: false,
			'zoomSpeedIn'			: 500,
			'zoomSpeedOut'			: 500
		});
	}
});
function openWin3(url, name) {
	popupWin = window.open(url, name,
	"resizable,scrollbars=yes,toolbar=no,width=500,height=175");
}