//Scripts File - All Jquery and other

$(document).ready(function() {
   $('#homeFade').cycle({ 
    fx:    'fade', 
    speed:  1800 
 });

$('#gallery a').lightBox(); // Select all links in object with gallery ID
	fixedNavigation: true
});

/* Form Script
--------------------------------------------------------------------------------------- */
$(document).ready(function(){
	$('input, textarea, select').focus(function(){
		$(this).addClass("over");
		}).blur(function(){
		$(this).removeClass("over");
	});
});



