$(document).ready(function()
{	
	$("a#map_1").fancybox({ 'hideOnContentClick': true});	
	$("a#map_2").fancybox({ 'hideOnContentClick': true});
	$("a#map_3").fancybox({	'hideOnContentClick': true});
});

function discount_validate(discount,card_number)
{
	$("#discount_ok").hide();
	$("#discount_wait").show();

	$.post("include/discount_types.php",
	{
		code:						discount,
		card_number: card_number
	},
	function(data)
	{
		$("#discount_result").html(data);
	
		$("#discount_ok").show();
		$("#discount_wait").hide();
	});

}
