/* Handles the mouseover toggling of the rightbar between My Tools and My Account */
$("ul#toggle-menu li").mouseover(function(){
	$(this).siblings().removeClass("active");
	$(this).siblings().find("a").removeClass("active");
	$(this).addClass("active");
	$(this).find("a").addClass("active");
	
	$("div.rightbar-content").hide();
	$("div#" + this.id + "-container").show();
});

/* Return false on click */
$("ul#toggle-menu li").click(function(){
	return false;
});

// Display confirm message before submitting myaccount tab form
$("#myaccount_editdata").submit(function(){
	return confirm("Are you sure you wish to edit you account data?");
});