var baseTitle = "The 2011 Lincoln MKX";

var data = {};
data["/landing"] = ["http://www.lincoln.com/2011mkx/", "TITLE", "Copy."];
data["/landing/video"] = ["http://www.lincoln.com/2011mkx/?id=/landing/video", "LANDING VIDEO", "Landing video copy."];
data["/gallery/videos"] = ["http://www.lincoln.com/2011mkx/?id=/gallery/videos", "VIDEO", "Copy for video"];
data["/gallery/videos/a"] = ["http://www.lincoln.com/2011mkx/?id=/gallery/videos/a", "VIDEO", "Copy for video"];

// PHASE 2:
// data["/highlights/2"] = [baseURL + "?id=/highlights/2", "HIGHLIGHTS 2", "Copy for highlights 2."];


var shareThisObjects = {};
for(var i in data){
	shareThisObjects[i] = SHARETHIS.addEntry( { title:encodeUtf8(baseTitle), url:encodeUtf8(data[i][0]), summary:encodeUtf8(data[i][1]), content:encodeUtf8(data[i][2]) }, { button:false, popup:true, embeds:false } );
}

function shareLauncher(name){
	//alert(name + ' | ' + shareThisObjects[name].properties.url + " | " + shareThisObjects[name].properties.summary);
	shareThisObjects[name].popup();
}

function encodeUtf8( s )
{
  return unescape( encodeURIComponent( s ) );
}

ShareThisFix.run(); 

