jQuery(function( $ ){
	$('#slide ul').cycle({ 
		fx:     'fade', 
		timeout: 5000, 
		next:   '#prox', 
		prev:   '#ante',
		pager:  '#nav',
		
		pagerAnchorBuilder: function(idx, slide) { 
        return '#nav li:eq(' + idx + ') a'; 
		}
	});	
});

function abreMapa(mapa)  {
	path='mapas/';
	window.open(path+mapa,'Mapa','width=425,height=370');
}
//_______________________________Ofertas

function abreOferta(tipo) {

var win="ofertas";
var param="scrollbars=1, menubar=1, resizable=1, fullscreen=1";

		if (tipo=="ofertas")  {
			window.open('ofertas/index.php',win,param)
		}
		else if (tipo=="especial")  {
			window.open('ofertas/especial/index.php',win,param)
		}
		else if (tipo=="extra")  {
			window.open('ofertas/extra/index.php',win,param)
		}
}

