/* ---------------------JQUERY01. MA Logo Animation02. External Windows03. Form Errors04. Recommendations05. FAQ SLIDER06. Popup Windows--------------------- */$(document).ready(function(){		/*	----------------------------------------------------------	01. MA LOGO ANIMATION	---------------------------------------------------------- */	$("#moncur a").hover(function() {		$(this).prev("span").animate({opacity: "show", left: "-165"}, "slow");	}, function() {		$(this).prev("span").animate({opacity: "hide"}, "fast");	});				/*	----------------------------------------------------------	02. EXTERNAL WINDOWS	---------------------------------------------------------- */	$(function(){	    $('a.external').click(function(){		   window.open(this.href);		   return false;	    });	});		/*	----------------------------------------------------------	03. FORM ERRORS	---------------------------------------------------------- */	$("#errors").hide();			/*	----------------------------------------------------------	04. RECOMMENDATIONS	---------------------------------------------------------- */	$("span.recommended img").hover(function() {			$(this).next("em").css("z-index","999999").animate({opacity: "show"}, "fast");		}, function() {			$(this).next("em").animate({opacity: "hide"}, "fast");		});				/*	----------------------------------------------------------	05. FAQ SLIDER	---------------------------------------------------------- */	$("dl.faq dd").hide(); //hide 		$("dl.faq dt").click(function(){ //toggle 			// $(this).siblings("dt").removeClass("active");			$(this).toggleClass("active");			$(this).next("dd").slideToggle("normal");			return false;		});			/*	----------------------------------------------------------	06. UPDATE PROFILE 	---------------------------------------------------------- */	if (typeof editstudent_firstpage != "undefined") {		if (editstudent_firstpage == 'room-mgmt') {			$("#personal-info").hide();			$("#tab-rooms a").addClass("active");				} else {			$("#room-mgmt").hide();			$("#tab-personal a").addClass("active");		}		}		$("#tabs a").click(function(){		$("div.tabs").hide();		$("#tabs a").removeClass("active");		return false;		});	$("#tab-personal a").click(function(){ //toggle		$("#personal-info").animate({opacity: "show"}, "slow");		$("#tab-personal a").addClass("active");		return false;	});	$("#tab-rooms a").click(function(){ //toggle 		$("#room-mgmt").animate({opacity: "show"}, "slow");		$("#tab-rooms a").addClass("active");		return false;	});		$("form#edit-roomname").hide();	$("#btn-editname a").click(function(){		$("form#edit-roomname").animate({opacity: "show"}, "normal");		return false;		});					}); // end jQuery
