$(document).ready(function(){	if ($('#headlines').get(0)) {		$('#headlines').cycle({			fx:	'fade',			timeout: 5000,			speed: 1500,			sync: 0,			pause: 1,			slideExpr:'dd',			cleartype:0		});	}});jQuery.fn.hint = function() {	return this.each(function(){		var t = $(this);		var title = t.attr('title');		if (title) {			t.focus(function(){				if (t.val() == title) {				  t.val('');				  t.removeClass('blur');				}			})			t.blur(function(){				if (t.val() == '') {				  t.val(title);				  t.addClass('blur');				}			})			t.parents('form:first()').submit(function(){				if (t.val() == title) {					t.val('');					t.removeClass('blur');				}			});			t.blur();		}	})}$(function(){	$('input:text').hint();})