// Closes all the tipping panels when the DOM is ready
$(document).ready(function () {	
	// hide the logon panel if there's no 'rightEmailFriendDontHide' div
	if ($("span[id*='rightEmailFriendTitleTextActivate']").parent().parent().parent().find("#rightEmailFriendDontHide").length == 0 ) {
		$("span[id*='rightEmailFriendTitleTextActivate']").parent().parent().parent().find("#hidingTarget").hide();
	}
	
	// attach the event so that users can show / hide the email friend panel
	$("span[id*='rightEmailFriendTitleTextActivate']").click(function() {	
		
		$.emailFriendArea = $(this).parent().parent().parent().find("#hidingTarget");
	
		if ($.emailFriendArea.is(":hidden")) {	
			// show
			$.emailFriendArea.fadeTo(1, 0).show(400).fadeTo(400, 1);
		} else {
			// hide
			$.emailFriendArea.fadeTo(400, 0).hide(400);
		}
    });	
});
