$(document).ready(function(){

	// Form Validation
	$("#contact_form").validate();

/*
	$(".video").click(function() {
		$.fancybox({
			'padding'		: 0,
			'autoScale'		: false,
			'transitionIn'	: 'none',
			'transitionOut'	: 'none',
			'title'			: this.title,
			'width'			: 680,
			'height'		: 495,
			'href'			: this.href.replace(new RegExp("watch\\?v=", "i"), 'v/'),
			'type'			: 'swf',
			'swf'			: {
				'wmode'				: 'transparent',
				'allowfullscreen'	: 'true'
			}
		});

		return false;
	});
*/
	$(".video").fancybox({
		'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'autoScale'     	: false,
		'type'				: 'iframe',
		'width'				: 400,
		'height'			: 300,
		'scrolling'   		: 'no'
	});

	// External Links
	$("a[href*=http]").attr('target','_blank');
	$("a[href*=crimlaw]").attr('target','_self');
	$("a[href*=leorashemesh]").attr('target','_self');
	$("a[href*=pdf]").attr('target','_blank');

});
