function imgover(i){
	jQuery('#detalle_'+i).show();
	//jQuery('#img_'+i).animate({opacity:0.5},500);
}
function imgout(i){
	jQuery('#detalle_'+i).hide();
	//jQuery('#img_'+i).animate({opacity:1},500);
}
function adetalle(i,j){
	window.location.href='detalles_del_producto.php?ip='+i+'&p='+j;
}


