function switchText()
{
	if ($(this).val() == $(this).attr('title'))
		$(this).val('').removeClass('gray');
	else if ($.trim($(this).val()) == '')
		$(this).addClass('gray').val($(this).attr('title'));
}
$(function(){
	//textarea
	$('input[type=text][title!=""],input[type=password]').each(function() {
		if ($.trim($(this).val()) == '') $(this).val($(this).attr('title'));
		if ($(this).val() == $(this).attr('title')) $(this).addClass('gray');
	}).focus(switchText).blur(switchText);
	
	$('form').submit(function() {
		$(this).find('input[type=text][title!=""]').each(function() {
			if ($(this).val() == $(this).attr('title')) $(this).val('');
		});
	});
	//textarea

	$('#homeimg .slide').cycle({ 
	    fx:     'fade', 
	    speed:  'slow', 
	    timeout: 5000 
	});

});


