/* ---------------------------------------------------------------------------------------
Author: 		Curtis Campbell
Updated: 		September.27.2010
--------------------------------------------------------------------------------------- */
/* Start The document Ready function
--------------------------------------------------------------------------------------- */
$(document).ready(function(){

/* Form Script
--------------------------------------------------------------------------------------- */
	$('input, textarea, select').focus(function(){
		$(this).addClass("over");
		}).blur(function(){
		$(this).removeClass("over");
	});
	
/* Fancybox
--------------------------------------------------------------------------------------- */
	$("a[rel='lightbox']").fancybox({
		'titleShow' : true,
		'transitionIn'		: 'none',
		'transitionOut'		: 'n,one',
		'overlayOpacity' : 0.75,
		'autoScale' : true
	});
	
	$(".apply").fancybox({
		'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'overlayOpacity' : 0.75,
		'titleShow' : false,
		'scrolling' : 'no',
		'autoScale' : false
	});

});
