$(function(){
	$('input[@type=text]').one('focus', function(){
		$(this).val('').addClass('active');
	});
	if ($('body').attr('id') == 'home') $('#previews').cycle('fade');
})