jQuery(document).ready(function() {
		
		jQuery('#home .cats div.one .images').cycle({
        	fx:      'fade',
        	timeout:  3500,
        	pager:   '#cycle-nav'
   	 	});
   	 	
   	 	jQuery('#home .cats div.two .images').cycle({
        	fx:      'fade',
        	timeout:  4000,
        	pager:   '#cycle-nav'
   	 	});
   	 	
   	 	jQuery('#home .cats div.three .images').cycle({
        	fx:      'fade',
        	timeout:  3750,
        	pager:   '#cycle-nav'
   	 	});
   	 	
   	 	jQuery(function() {
			jQuery('#photo a').lightBox({fixedNavigation:true});
		});
   	 	
   	 	/* make the value and title the same */
   	 	var clearMePrevious = "";
		jQuery(".clearMeFocus").focus(function() {
			if(jQuery(this).val()==jQuery(this).attr("title")) {
				clearMePrevious = jQuery(this).val();
				jQuery(this).val("");
			}
		});
		
		jQuery(".clearMeFocus").blur(function() {
			if(jQuery(this).val()=="") {
				jQuery(this).val(clearMePrevious);
			}
		});
    		
	}
);
