// JavaScript Document

function changeLightBoxContents($id, $path) 
{
	var url = $("#image" + $id).attr('src');
	var file = url.substring(url.lastIndexOf("/") + 1, url.length);
	var reference = $("#reference" + $id).text();
		
	$("#lightbox-image").html("<img src='library/img/colecao" + $path + "/lightbox/" + file + "' />");	
	$("#lightbox-reference").text(reference);	
	$("#lightbox-facebook").attr("href", "http://www.facebook.com/sharer.php?s=100&p[title]=My Shoes&p[url]=http://www.myshoes.com.br&p[summary]=Participe da promocao My Shoes leva voce a Paris&p[images][0]=http://www.myshoes.com.br/library/img/colecao" + $path + "/" + file);	
}