// JavaScript Document
$(document).ready(function(){

	// Mostra ou esconde os valores de um input de acordo com o valor do título do mesmo
	$('input[title],textarea[title],').focus(
		function() {
			if ($(this).attr('title') == $(this).attr('value')) { $(this).attr('value', ''); }
		}
	).blur(
		function() {
			if (!$(this).attr('value')) { $(this).attr('value', $(this).attr('title')); }
		}
	)

	// Iniciando o prettyPhoto
	$("a[rel^='prettyPhoto']").prettyPhoto({
		hideflash: false,
		theme:'facebook'
	});

});


