/* ---------------------------------------------------------------------------------------
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");
	});


/* Callout Animation
--------------------------------------------------------------------------------------- */
	var fadeDuration = 150; //time in milliseconds
      
     jQuery('.callouts a img').hover(function() {
        $(this).animate({ bottom: '4' }, fadeDuration);
     }, function() {
        $(this).animate({ bottom: '0' }, fadeDuration);       
     });
	 
/* Fancybox
--------------------------------------------------------------------------------------- */
	$("a[rel='lightbox']").fancybox({
		'titleShow' : false,
		'transitionIn'		: 'none',
		'transitionOut'		: 'none'
	});

});
