// Popup
function openBrWindow(theURL,winName,features) {
	window.open(theURL,winName,features);
}

$(document).ready(function(){

	// Hover over form
	$('.form-body').hover(
		function(){
			$('.video-off').fadeOut();
		},
		function(){
			$('.video-off').fadeIn();
		}
	);

	// Contact Form
	$('.modal_input').overlay({
		closeOnClick: false
	});

	closeOverlay = function(){
		setTimeout(function(){
			$('.modal_input').overlay().close();
		}, 2000);
	}

	$('.close').click(function(e){
		return e.preventDefault();
	});

});
