function showSocial(url,title,location_id)
{
	if(location_id==null)
	{
		location_id='social';
		//check if exists id"social"
		check_social = document.getElementById('social');
		if(check_social==null)
		{
			document.write('<div id="social" class="social"></div>');
		}
	}
	var social = document.getElementById(location_id);
	share_id = location_id + "_share_pane";
	socialHTML =	"<div id='share_btn' onclick='showPane(\"" + share_id + "\")'>"
	socialHTML +=		"<img src='/wp-content/themes/sliderstudio/img/social/share.png' alt='Share' title='Share' />"
	socialHTML +=		"<span class='share_text'>SHARE</span>"
	socialHTML +=		"<img src='/wp-content/themes/sliderstudio/img/social/facebook.png' alt='Facebook' title='Facebook' />"
	socialHTML +=		"<img src='/wp-content/themes/sliderstudio/img/social/twitter.png' alt='Twitter' title='Twitter' />"
	socialHTML +=		"<img src='/wp-content/themes/sliderstudio/img/social/linkedin.png' alt='Linkedin' title='Linkedin' />..."
	socialHTML +=	"</div><div class='float_clear'></div>";
	socialHTML +=	"<div id='" + share_id + "' class='share_pane' style='display:none'>"
	socialHTML +=		"<div class='share_icons' onclick='hidePane(\"" + share_id + "\")'>";
	socialHTML +=			"<div class='share_site'>";
	socialHTML += 				"<a href='mailto:?subject="+title+"&body=I thought you would be interested in the article \"" + title + "\" found at " + url +"'>";
	socialHTML += 					"<img src='/wp-content/themes/sliderstudio/img/social/email.png' title='Share via email' alt='Share via email' /> Email";
	socialHTML +=				"</a>";
	socialHTML +=			"</div>";
	socialHTML +=			"<div class='share_site'>";
	socialHTML += 				"<a href='http://www.facebook.com/share.php?u=" + url + "&t=" + title + "'>";
	socialHTML += 					"<img src='/wp-content/themes/sliderstudio/img/social/facebook.png' title='Share with Facebook' alt='Share with Facebook' /> Facebook";
	socialHTML +=				"</a>";
	socialHTML +=			"</div>";
	socialHTML +=			"<div class='share_site'>";
	socialHTML += 				"<a href='http://www.linkedin.com/shareArticle?mini=true&url="+ encodeURIComponent(url) + "&title="+ title +"'>";
	socialHTML += 					"<img src='/wp-content/themes/sliderstudio/img/social/linkedin.png' title='Share with LinkedIn' alt='Share with LinkedIn' /> LinkedIn";
	socialHTML +=				"</a>";
	socialHTML +=			"</div>";
	socialHTML +=			"<div class='share_site'>";
	socialHTML += 				"<a href='http://twitter.com/home?status="+ url +"'>";
	socialHTML += 					"<img src='/wp-content/themes/sliderstudio/img/social/twitter.png' title='Share with Twitter' alt='Share with Twitter' /> Twitter";
	socialHTML +=				"</a>";
	socialHTML +=			"</div>";
	socialHTML +=			"<div class='share_site'>";
	socialHTML += 				"<a href='http://www.stumbleupon.com/submit?url="+ url +"'>";
	socialHTML += 					"<img src='/wp-content/themes/sliderstudio/img/social/stumbleupon.png' title='Share with StumbleUpon' alt='Share with StumbleUpon' /> StumbleUpon";
	socialHTML +=				"</a>";
	socialHTML +=			"</div>";
	socialHTML +=			"<div class='share_site'>";
	socialHTML += 				"<a href='http://del.icio.us/post?url="+ url +"'>";
	socialHTML += 					"<img src='/wp-content/themes/sliderstudio/img/social/delicious.png' title='Share with Delicious' alt='Share with Delicious' /> Delicious";
	socialHTML +=				"</a>";
	socialHTML +=			"</div>";
	socialHTML += 		"</div>";
	socialHTML += 	"</div>";
	social.innerHTML = socialHTML;
}

function showSocialPane(link,title,unique_name)
{
	social = document.getElementById(unique_name);
	socialHTML =	"<div class='share_icons' onclick='hidePane(\"" + unique_name + "\")'>";
	socialHTML +=		"<div class='share_site'>";
	socialHTML += 			"<a href='http://www.facebook.com/share.php?u=" + link + "&t=" + title + "'>";
	socialHTML += 				"<img src='/wp-content/themes/sliderstudio/img/social/facebook.png' title='Share with Facebook' alt='Share with Facebook' /> Facebook";
	socialHTML +=			"</a>";
	socialHTML +=		"</div>";
	socialHTML +=		"<div class='share_site'>";
	socialHTML += 			"<a href='http://www.myspace.com/Modules/PostTo/Pages/?t=" + title + "&c=" + link + "'>";
	socialHTML += 				"<img src='/wp-content/themes/sliderstudio/img/social/myspace.png' title='Share with Myspace' alt='Share with Myspace' /> Myspace";
	socialHTML +=			"</a>";
	socialHTML +=		"</div>";
	socialHTML +=		"<div class='share_site'>";
	socialHTML += 			"<a href='http://twitter.com/home?status="+ link +"'>";
	socialHTML += 				"<img src='/wp-content/themes/sliderstudio/img/social/twitter.png' title='Share with Twitter' alt='Share with Twitter' /> Twitter";
	socialHTML +=			"</a>";
	socialHTML +=		"</div>";
	socialHTML += 	"</div>";
	social.innerHTML = socialHTML;
	showPane(unique_name);
}

function showPane(pane_id)
{
	panel = document.getElementById(pane_id);
	if(panel.style.display != "block") panel.style.display = "block";
	else panel.style.display = "none";
}

function hidePane(pane_id)
{
	panel = document.getElementById(pane_id);
	panel.style.display = "none";
}