$(function()
{
	$('.link_buy a.right').click(function()
	{		
		var id = this.id.split("zoom_")[1];		
		$.ajax({
			type	 : 'get',
			url		 : '/'+G_RN_CONTEXT+'/'+G_RN_IDLANGUAGE+'/shop/product/'+id,			
			dataType : 'xml',
			success	 : function(xml)
			{				
				var atributes = new Array();
				var nodes = xml.getElementsByTagName("producto")[0].childNodes;
				
				for(i=0;i<nodes.length;i++)
				{					
					if (nodes[i].tagName)
					{
						try {
							atributes[nodes[i].tagName] = $(nodes[i]).text();
						}catch(e){
							atributes[nodes[i].tagName] = "";
						}
					}
				}
				var lightShow = new dyLightshow({
					id		: 'prod',
					modal	: true,
					width	: 758,
					height	: 350,
					left	: $("ul#menu_nav li:first")[0].offsetLeft
				});				
				
				lightShow.ajaxShow('/prod.html','',function()
				{					
					$('div.detalle_cajaprod h2').html(atributes["nombre"]);
					$('div.detalle_cajaprod h3').html(atributes["sexo"]);					
					$('div.detalle_cajaprod h4').html(atributes["precio"]);
					$('div.detalle_cajaprod p').html(atributes["descripcion"]);
					$('div.detalle_cajaprod a').attr("href",atributes["link"]);
					$('div.detalle_imgprod img').attr("src",atributes["imagen"]);						
					$('.btn_buy').attr("href",atributes["link"]);
				});
				
			}
		});
		
		return false;
	});
});