﻿//Show buttons that were hidden for the no javascript bods
$(document).ready(function()
{
	$("#sharelink").show();
	$("#ctl00_SocialBookmarks_b_share").hide();
	$("#ctl00_ctl00_SocialBookmarks_b_share").hide();
	$("#print").show();
});

//Show widget method
function ShowSocial()       
{                      
    $("#ctl00_SocialBookmarks_p_SocialWidget").slideToggle("slow");
    $("#ctl00_ctl00_SocialBookmarks_p_SocialWidget").slideToggle("slow");
}    
