var sites = [
	{name: "delicious", url: "http://del.icio.us/post?url=%{url}&title=%{title}"},
	{name: "digg", url: "http://digg.com/submit?phase=2&url=%{url}&title=%{title}"},
	{name: "facebook", url: "http://www.facebook.com/sharer.php?u=%{url}"},
	{name: "fark", url: "http://cgi.fark.com/cgi/fark/submit.pl?new_url=%{url}&new_comment=%{title}"},
	{name: "furl", url: "http://www.furl.net/savedialog.jsp?p=1&u=%{url}&t=%{title}&r=&v=1&c="},
	{name: "newsvine", url: "http://www.newsvine.com/_wine/save?u=%{url}&h=%{title}"},
	{name: "reddit", url: "http://reddit.com/submit?url=%{url}&title=%{title}"},
	{name: "stumbleupon", url: "http://www.stumbleupon.com/submit?url=%{url}&title=%{title}"},
	{name: "technorati", url: "http://www.technorati.com/faves?add=%{url}"},
	{name: "yahoo_myweb", url: "http://myweb2.search.yahoo.com/myresults/bookmarklet?u=%{url}&t=%{title}"},
	{name: "myspace", url: "http://www.myspace.com/Modules/PostTo/Pages/?l=3&u=%{url}&t=&c=%3Cp%3EPowered%20by%20%3Ca%20href=%22http://sharethis.com%22%3EShareThis%3C/a%3E%3C/p%3E"},
	{name: "wikio", url: "http://www.wikio.fr/publish"},
	{name: "scoopeo", url: "http://www.scoopeo.com/scoop/new?newurl=%{url}"}
	
];

function openUrl(url) {
	window.open( url, "_blank");
}

function shareThis(close) {
	var share = document.getElementById("sharing");
	var shareLink = document.getElementById("shareThisLink");

	if (close) {
		shareLink.style.display = '';
		share.style.display = 'none';
	}
	else {
		shareLink.style.display = 'none';
		share.style.display = '';
	}
}

