﻿var baseURL = "http://www.fordvehicles.com/2010taurus/";
var baseTitle = "The 2010 Ford Taurus";

var data = {};
data.home = [baseURL, null, null];
 
data.video01 = [baseURL + "?id=/demos/video01", "TAURUS VS. LEXUS LS 460", "Two cars and a ton of gravel. Which paint finish can handle the onslaught?"];
data.video02 = [baseURL + "?id=/demos/video02", "TAURUS VS. INFINITI M45x", "A gauntlet of pylons. Bogey vehicles in pursuit. Which car will use its technology to help navigate through?"];
data.video03 = [baseURL + "?id=/demos/video03", "TAURUS SHO VS. AUDI A6", "Will the new twin-turbo direct-injection 3.5L EcoBoost™ V6 play catch-up or catch-me-if-you-can to their V8?"];
data.video04 = [baseURL + "?id=/demos/video04", "TAURUS VS. ACURA RL", "Rigged to record interior noise levels, how will each car measure up against 140-decibel blasts?"];
data.video05 = [baseURL + "?id=/demos/video05", "TAURUS SHO VS. ITSELF", "What if you held the key to controlling how someone else drives your car?"];

var shareThisObjects = {};
for(var i in data){
	shareThisObjects[i] = SHARETHIS.addEntry({title:baseTitle, url:data[i][0], summary:data[i][1], content:data[i][2]}, {button:false, popup:true, embeds:false});
}

function shareLauncher(name){
	shareThisObjects[name].popup();
}

ShareThisFix.run();