jQuery(document).ready(function(){
	if (document.getElementById('RateShare1_feedbackIcon'))
	{
		jQuery('<span class="feedbackLink" id="feedbackIcon">Rate this page</span>').insertAfter('a.feedbackLink');
		jQuery('a.feedbackLink').remove();
		
		jQuery('#feedbackIcon').click(function() {
			jQuery('div#RateShare1_sendEmailBox').hide();
			jQuery('div#RateShare1_sendShareBox').hide();
			jQuery('div#RateShare1_sendFeedbackBox').toggle('slow', function() {
				// Animation complete.
			});
		});
	
		jQuery('#RateShare1_feedbackClose').click(function() {
			jQuery('#RateShare1_sendFeedbackBox').toggle('slow',function () {
				// Animation complete.
			});
		});
	}
	if (document.getElementById('RateShare1_emailIcon'))
	{
		jQuery('<span class="emailLink" id="emailIcon">Send to a friend</span>').insertAfter('a.emailLink');
		jQuery('a.emailLink').remove();
		
		jQuery('#emailIcon').click(function() {
			jQuery('div#RateShare1_sendShareBox').hide();
			jQuery('div#RateShare1_sendFeedbackBox').hide();
			jQuery('div#RateShare1_sendEmailBox').toggle('slow',function() {
				// Animation complete.
			});
		});
		
		jQuery('#RateShare1_emailClose').click(function() {
			jQuery('div#RateShare1_sendEmailBox').toggle('slow',function () {
				// Animation complete.
			});
		});
	}
	if (document.getElementById('RateShare1_shareIcon'))
	{
		jQuery('<span class="shareLink" id="shareIcon">Share</span>').insertAfter('a.shareLink');
		jQuery('a.shareLink').remove();
		
		jQuery('#shareIcon').click(function() {
			jQuery('div#RateShare1_sendEmailBox').hide();
			jQuery('div#RateShare1_sendFeedbackBox').hide();
			jQuery('div#RateShare1_sendShareBox').toggle('slow', function() {
				// Animation complete.
			});
		});
		
		jQuery('#RateShare1_shareClose').click(function() {
			jQuery('div#RateShare1_sendShareBox').toggle('slow',function () {
				// Animation complete.
			});
		});
	}
});
