$(function(){$.fn.clearForm=function(){return this.each(function(){var b=this.type,a=this.tagName.toLowerCase();if(a=="form"){return $(":input",this).clearForm()}if(b=="text"||b=="password"||a=="textarea"){this.value=""}else{if(b=="checkbox"||b=="radio"){this.checked=false}else{if(a=="select"){this.selectedIndex=-1}}}})}});$(function(){$.fn.equalHeight=function(){tallest=0;this.each(function(){thisHeight=$(this).height();if(thisHeight>tallest){tallest=thisHeight}});this.each(function(){$(this).height(tallest)})}});$(function(){$.fn.extend({showLoading:function(f,c){f=(typeof f=="undefined"||f==""?"Images/head2.png":f);c=(typeof c=="undefined"||c==""?"Loading...":c);var d=$(this).width();var e=$(this).height();var b="width: "+d+"px; height: "+e+"px; line-height: "+e+"px; text-align: center;";var a='<div class="loading" style="'+b+'">';a+='<img src="'+f+'" width="50px" alt="Loading..." /></div>';$(this).append(a)},hideLoading:function(){$(this).children(".loading").remove()}})});