$(document).ready(function(){
	$('a[href^=#]').click(function(){
		return false;
	});

	$('a.voltar').click(function(){
		history.go(-1);
	});

	$('a.imprimir').click(function(){
		window.print();
	});
	
	$('#banner').flash({
		swf:'/assets/swf/banner.swf',
		width:797,
		height:472,
		allowscriptaccess:'always',
		wmode:'transparent'
	});

	$(".validacao").validate({
		errorElement: 'ul',
		errorClass: 'errors',
		errorPlacement: function(error, element) {
			error.appendTo( element.parent() );
		}
	});

	$('input.telefone').mask('(99) 9999-9999');
	$('input.nascimento').mask('99/99/9999');

	$("a[rel^='prettyPhoto']").prettyPhoto({
		theme:'light_rounded'
	});

	swapValue = [];
	$("div>.input").each(function(i){
		swapValue[i] = $(this).val();
		$(this).focus(function(){
			if ($(this).val() == swapValue[i]) {
				$(this).val("");
			}
		}).blur(function(){
			if ($.trim($(this).val()) == "") {
				$(this).val(swapValue[i]);
			}
		});
	});
});
