jQuery(document).ready(function($){
	
	var Fields =  $('.remove_input_text_on_focus');
		
	$.each(Fields, function(){
		var ChangeBackText = $(this).attr("value");
		
		$(this).focus(function(){
			var CurrentTextValue = $(this).attr("value");
					
			if (CurrentTextValue == ChangeBackText){
				$(this).attr("value", "");
			}
		});
		
		$(this).blur(function(){
			var CurrentTextValue2 = $(this).attr("value");
					
			if (CurrentTextValue2 == ""){
				$(this).attr("value", ChangeBackText);
			}
		});
	});
	
	if ($("#banner ul").length > 0){
		$("#banner ul").cycle({
			timeout:  6000
		});
	};
	
});