// //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// Passatempo.JS                                                                                                                                           //
// //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// @package Shopping Cidade do Porto 2011
// @author Pedro Gonçalves
// @copyright Copyright (c) Front.end 2011
// @version 1.0
// @access public
// //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// DIA DOS NAMORADOS                                                                                                                                       //
// //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
$j(document).ready(function() {
	var totalHeight = $j(document).height();
	$j('#passatempo').height(totalHeight);
});
$j(window).load(function() {
	if ($j('#passatempo-container').length > 0) {
		$j('#passatempo-container').fadeIn('slow');
	}
	$j('#passatempo-container  .close').live('click', function() {
		$j('#passatempo').fadeOut('slow', function() {
			$j(this).remove();
		})
	});
	$j('#form-passatempo > #submit:not(.blocker)').live('click', function() {
		$j(this).addClass('blocker').children('span').html('&nbsp;');
		var valores = $j('#form-passatempo').serialize();
		$j.ajaxSetup({
			cache: false
		});
		$j.post(endereco_site + '/frontend/passatempos/passatempos_proc.php', valores, function(data) {
			$j('#form-passatempo > #submit').removeClass('blocker').children('span').html('Submeter');
			if (data) {
				if (data.resultado == 0) {
					$j('#form-passatempo input[type="text"]').val('');
					$j('#form-passatempo input[type="checkbox"]').attr('checked', false);
					$j('#form-passatempo > #submit').hide().remove();
					$j('#output').hide();
					$j('#passatempo-container > h2').fadeOut('slow');
					$j('#form-passatempo').fadeOut('slow', function() {
						$j('#output').html(data.output);
						$j('#output').append('<span class="close">fechar</span>');
						$j('#output').fadeIn('slow');
					});
				}
				else {
					$j('#output').html(data.output);
				}
			}
		}, "json");
	});
});

