$(document).ready(function(){
	 $('#slideshow').cycle({
			fx: 'fade',  
			speed:  1000,
			timeout: 5000
		});
	swapValue = [];
	$("div.form_mail input.text_mail").each(function(i){
	  swapValue[i] = $(this).val();
	  $(this).focus(function(){
			if ($(this).val() == swapValue[i]) {
				$(this).val("");
			}
			$(this).addClass("focus");
	  }).blur(function(){
		  if ($.trim($(this).val()) == "") {
			  $(this).val(swapValue[i]);
			  $(this).removeClass("focus");
		  }
	
	  });
	
	});
		
	});

