function clearInputs(){
	$('input:text, input:password, textarea').each(function(){
		var _el = $(this);
		_el.data('val', _el.val());
		_el.bind('focus', function(){
			if(_el.val() == _el.data('val')) _el.val('');
		}).bind('blur', function(){
			if(_el.val() == '') _el.val(_el.data('val'));
		});
	});
}
$(document).ready(function(){
	clearInputs();
	$('#content img').each(function(){
		$(this).wrap('<span class="'+$(this).attr('class')+'"></span>').removeAttr('class').parent().append('<span class="caption">'+$(this).attr('alt')+'</span>');
	});
	$('#rotator .slide-holder').after('<div class="overlay"></div>').cycle({ 
		fx:     'fade', 
		speed:  500,
		timeout: 5000,
		pause: true
	});
});
