$(document).ready(function() {

	$("a#seleczona").fancybox({
		'transitionIn'	 : 'fade',
		'transitionOut'	 : 'fade',
		'speedIn'		 : 600,
		'speedOut'		 : 200,
		'modal'			 : true,
		'titleShow'      : false,
		'showCloseButton': false,
		'padding'		 : 0,
		'margin'		 : 0,
		'overlayOpacity' : 0.9,
		ajax : {
		    type	: "POST"
		}

	});


});


function overZona(zona,activo){
	if(activo){
		$("#"+zona).attr('class',"selec");
		$("#imgmapa").attr('src',path + "/images/mapa" + zona + ".gif");
	}else{
		$("#"+zona).attr('class',"");
		$("#imgmapa").attr('src',path + "/images/mapaoff.gif");
	}
}

function selectZona(zona){
	var recuerda=$("#recuerda").attr("checked");
	var my_ajax = $.ajax({
		type: "POST",
		async: false,
		data: "zon_id=" + zona +"&recuerda="+ recuerda,
		url: path + "/cambiazona",
		timeout: 45000
	}).responseText;
	if(my_ajax!=""){
		parent.jQuery.fancybox.close();
		window.location = path + "/index/" + my_ajax;
	}
}


function closeMapa () {
	parent.jQuery.fancybox.close();
}
