// JavaScript Document

function carga_miniaturas_productos(page_id,activo){
	/*
	####################################################################################################
	#######################	carga las miniaturas para la navegacion con la paginacion ##################
	####################################################################################################
	*/
		$.ajax({
					url: 'php_xml/mariscos_ul.php',
					type: 'POST',
					dataType: 'text/html',
					timeout: 8000,
					data:'action=listar&page='+page_id+'&activo='+activo,
					beforeSend:function(){
					$('#miniaturas_productos').html('<div style="margin-top:40px"><img src="img/ajax-loader-mini.gif" alt="Cargando productos..." /></div>');
					},
					error: function(){
						
					},
					success: function(html){
					$('#miniaturas_productos').html(html);
					}
				});
}

function detalles_producto(este){
		/*
	####################################################################################################
	#######################	carga los detalles del peixe seleccionado ##################################
	####################################################################################################
	*/
$.ajax({
			url: 'php_xml/marisco.php',
			type: 'GET',
			dataType: 'text/html',
			timeout: 8000,
			data:'idese='+este,
			beforeSend:function(){
			$('#detalle_peixe').html('<div style="margin-top:120px; margin-left:200px"><img src="img/ajax-loader.gif" alt="Cargando productos..." /></div>');
			},
			error: function(){
				$('#detalle_peixe').html('<div style="margin-top:120px; margin-left:200px"><span style="font-size:14px">Ha ocurrido un error buscando su producto, por favor vuelva a intentarlo</span></div>');
			},
			success: function(html){
			$('#detalle_peixe').html(html);
			 Shadowbox.init({displayNav:false, handleUnsupported:'remove',autoplayMovies:false,overlayColor:'#f4f4f4',overlayOpacity:0.7});
 Shadowbox.setup($('.ventanita'),{initialWidth:300,initialHeight:300,handleOversize:true});
			}
		});
}


function ponlo_azul(q){
		/*
	####################################################################################################
	#######################	colorea la miniatura activa  ###############################################
	####################################################################################################
	*/
	esta = $('#miniaturas_productos').find('.activorl');
	esta.removeClass('activorl');
	esta.addClass('nome_peixe');
	cual ='#texto_'+q;
	este = $('#miniaturas_productos').find(cual);
	este.toggleClass('activorl')
}