jQuery(document).ready(function($) {
	  $("#homeCarousel").cycle({ 
		  fx: 'scrollLeft',
		  timeout: 7000,
		  speed: 1000,
		  pause: 1,
		  fit: 1,
			  next: '.nextBtn',
			  prev: '.prevBtn',
			  pager: '#carouselNav'
	  });
	  
	  $(".focusfield").each(function(){
		$(this).focus(function(){
		  if(this.value==this.defaultValue){
			this.value='';
		  }
		}).blur(function(){		
		  if(this.value==""){
			this.value = this.defaultValue;
		  }
		});
	  });
	  
	});

