$(document).ready( function() {
	
	$('#slider').cycle({
		fx: 'fade',
		timeout: 5000,
		height:400
	});
	
	$("input[type=text]").focus( function() {
		if ( $(this).val() == $(this).attr("title") ) {
			$(this).val("")
		}
	}).blur( function() {
		if ( $(this).val() == '' ) {
			$(this).val( $(this).attr("title") );
		}
	});	
	
});
