/**
 * Facebook and Twitter Share JS
 */

var FACEBOOK_URL="http://www.facebook.com/sharer.php?u=";
var TWITTER_URL="http://twitter.com/home?status=MERCEDES-BENZ USA - What Drives Us: ";

function ShareTo(shareUrl, shareType, shareTitle){
	shareUrl = shareUrl.replace(/local.mbusa.com/i,"www.mbusa.com");	
	if(shareType == "facebook"){
		window.open(FACEBOOK_URL+encodeURIComponent(shareUrl)+'&t='+encodeURIComponent(shareTitle),'_blank', 'toolbar=0, status=0, width=636, height=450');
	}
	else if(shareType == "twitter"){
		$.getJSON(
			"http://json-tinyurl.appspot.com/?&callback=?",
			{url: shareUrl},
			function(data){ window.open(TWITTER_URL+encodeURIComponent(data.tinyurl),'_blank', 'toolbar=0, status=0, width=788, height=484'); }
		);
	}
}


