$(document).ready(function() {
	var formdata = new Array;
	
	$('.input').each(function() {
		if ($(this).attr('readonly')) return;
		
		formdata[$(this).attr('name')] = $(this).attr('value');
		
		$(this).focus(function() {
			if (formdata[$(this).attr('name')] == $(this).attr('value'))
				$(this).attr('value', '');
		});
		
		$(this).blur(function() {
			if (!$(this).attr('value'))
				$(this).attr('value', formdata[$(this).attr('name')]);
		});		
	});
	
	$('#ss_slides').cycle({
		fx: 'fade'
	});
});
