$(document).ready(function() {
	//Ao clicar no campo, apago o que já estava escrito
	$('input.pass_field, input.text_field').focus(function() {
		if ( $(this).val() == $(this)[0].defaultValue )
			$(this).val('');
	});
	// Ao sair do campo e não tiver nada preenchido, volto o que 
	//era antes
	$('input.pass_field, input.text_field').blur(function() {
		if ( $(this).val() == '' )
			$(this).val( $(this)[0].defaultValue );
	});
	
	//JCarousel
	//$('.imagens').jcarousel({ scroll: 1, 'wrap' : 'both', 'auto' : 20 });

	//Imagens engraçadas do fancybox d'oh
	$('a.fancybox').fancybox();
});
