// JavaScript Document
$(document).ready(function(){
	// Clear search box onclick
	$(".clearField").focus(function () {
		if ($(this).val() === $(this).attr("title")) {
			$(this).val("");
		}
		}).blur(function () {
		if ($(this).val() === "") {
			$(this).val($(this).attr("title"));
		}
	}); 
	// open iframe using Fancybox
	$(".openContactForm").fancybox({
		'width'          : 760,
		'height'         : 500,
		'autoScale'      : true,
		'transitionIn'   : 'none',
		'transitionOut'  : 'none',
		'type'           : 'iframe',
		'titleShow'      : false,
		'overlayOpacity' : .9,
		'overlayColor'   : '#222'
	});
});
