//<![CDATA[   

var bLoggedin = true;

var kManagedEventTag = "ManageEventID";
var kManagedDeleteTag = "DeleteEventID";

$(document).ready(function() {
		
	
	// Setup login/account info box clicks ====================================

	$("#homelink").click(function() { document.location.href="/main.aspx"; });
	
	
	$("#RegisterLink").click( function() {
		
		document.location.href = "/account/signup/Signup.aspx";
		
		return false;
		
	});//end RegisterLink click

	$("#LoginLink").click(function() {
		
		gLogin();
		
	});
	
	$("#SignoutLink").click(function() {
		
		gWrapProcessLinkFunc("Are you sure you want to signout?", function() {
		
			document.location.href = "/signout.aspx";
			
		});//end wrap		
		
		return false;
		
	});
	
	$("#fCancel").click( function () {
			
		if (!confirm("Are you sure you want to cancel? Any unsaved changes on this page will be lost."))
			return;
		
		window.location.href = "/main.aspx";
		
		return false;
		
	});//end click
	
	
	// Toolbox items ==================================================
	if (bCompanyPortalAccess)
		$(".TopNavMenu #ManageEventsLink").show();
	else
		$(".TopNavMenu #ManageEventsLink").hide();
			
});	// End doc ready


//]]>
