﻿//namespace
function splitLast(str, splitter)
{
	return str.split(splitter)[str.split(splitter).length - 1];
}

function ShadowBoxShare(shadowbox)
{
	if(typeof Shadowbox !== 'undefined')
	{
		function _facebookLink(href)
		{
			return '<a target="_blank" href="http://www.facebook.com/share.php?u=' + escape(href) + '"><img src="/wp-content/themes/redbull/images/icnFacebook.gif" alt="Facebook" /></a>';
		}
		function _diggLink(href)
		{
			return '<a target="_blank" href="http://digg.com/submit?phase=2&url=' + escape(href) + '&media=image&thumbnail=1"><img src="/wp-content/plugins/sociable/images/digg.png" alt="Digg" /></a>';
		}
		function _twitterLink(href)
		{
			return '<a target="_blank" href="http://twitter.com/home?status=' + escape(href) + '"><img src="/wp-content/plugins/sociable/images/twitter.gif" style="height: 15px; width: 15px;" alt="Twitter" /></a>';
		}
		function _farkLink(href)
		{
			return '<a target="_blank" href="http://cgi.fark.com/cgi/fark/farkit.pl?u=' + escape(href) + '&h=Chinashopmag.com"><img style="height: 15px; width: 15px;"  src="/wp-content/themes/redbull/images/Fark.gif" alt="Fark" /></a>';
		}
		function _deliciousLink(href)
		{
			return '<a target="_blank" href="http://del.icio.us/post?url=' + escape(href) + '&title=Chinashopmag.com"><img style="height: 15px; width: 15px;" src="/wp-content/plugins/sociable/images/delicious.png" alt="Delicious" /></a>';
		}
		this.Update = function()
		{
			var _title = Shadowbox.getCurrent().title;
			var shareUrl = window.location.toString().split('?')[0];
			var _currentImgUrl = shareUrl + "?img=" + splitLast(Shadowbox.getCurrent().content.toString(), '/') + '&imgtitle=' + escape(_title);
			var _html =  _diggLink(_currentImgUrl)
						+ _twitterLink(_currentImgUrl)
						+ _farkLink(_currentImgUrl)
						+ _deliciousLink(_currentImgUrl)
						+ _facebookLink(_currentImgUrl);
			jQuery('#SB_Share_Links').html(_html);
		}
	}
	else throw "Shadowbox Share requires Shadowbox.";
}


/*

Delicious http://del.icio.us/post?url= http%3A%2F%2Fstaging.chinashopmag.com%2F2009%2F04%2Fnew-features%2F&title=New%20features
Digg http://digg.com/submit?phase=2&url=  &title=New%20features
Facebook
Fark http://cgi.fark.com/cgi/fark/farkit.pl?u= http://www.rollingstone.com/news/story/26754176/the_rs_100_agents_of_change &h=The+RS+100%3A+Agents+of+Change
Twitter http%3A%2F%2Fstaging.chinashopmag.com%2F2009%2F04%2Fnew-features%2F

*/