function showShare (shareID) {
	showLightbox_bg();
	var shareURL = 'http://www.learntodiski.com/index.php?share=' + shareID;
	$.getJSON('getShareBox.php?callback=?',{url:shareURL,title:'Diski Dance Your Way to South Africa 2010 - Shared Item',description:'I would love to share this link to a Diski Dance Your Way to South Africa 2010 video.  <a href="[URL]">Click here to view the video.</a>'}, function (shareData) {
		//console.dir(shareData.services);
		$('#smfshare_box').html('<a href="" class="lightbox_close" alt="Close"></a><div class="decoration"><div class="smfshare_header">Share This Diski Dance Video</div><br clear="all"/>');
		for (var i = shareData.services.length - 1; i >= 0; i--){
			$('#smfshare_box div.decoration').append(' ' + shareData.services[i][1] + ' ');
			$('#smfshare_box').fadeIn();
		};
	});
}

function showLightbox_bg() {
	$('#lightbox_bg').css({"display":"block"}).animate({"opacity" : .98});
}

function hideLightbox_bg() {
	$("#optin").hide();
	$("#smfshare_box").hide();
	$('#lightbox_bg').animate({'opacity' : 0}, function() {
		$(this).css({"display":"none"});
	});
}




$(document).ready(function() {
	
	// Share Email
	$("#sendtoafriend").click(function(){
		$('#sharebox_cont').fadeIn();
		 return false;
	});

	$("#share").click(function(){
		$('#sharebox_cont').fadeIn();
		 return false;
	});

	$(".cancelsend").click(function(){
		$('#sharebox_cont').fadeOut();
		 return false;
	});

	$("form#sendform").submit(function(){

		 $.post($(this).attr("action"),{
			   fromname: $("#fromname").val(),
			   fromemail: $("#fromemail").val(),
			   toname: $("#toname").val(),
			   toemail: $("#toemail").val()
			 }, function(xml) {
					messageSent(xml); });
		 return false;
	});


}); // End (document).ready

// Share Email

function messageSent1(str) {
	$("#theform").hide();
	$("#sendmailemail").val("");
	//$("#sendmailname").val("");
	$("#sendresult").show();
}
function showForm1(str) {
	$("#theform").show();
	$("#sendresult").hide();
}