$(function(){
				$("#page .hi").mageBorder();
			});
 $.fn.mageBorder = function(){  
     return this.each(function(){ 
		 $(this).fadeTo(200, 1.0);
         $(this).addClass("jqmageBorder");  
         $(this).hover(  
             function(){  
                 $(this).fadeTo(200,0.65);  
                 $(this).toggleClass("jqBRotate");  
             },  
             function(){  
                 $(this).fadeTo(200,1.0);  
                 $(this).toggleClass("jqBRotate");  
             }  
         );  
     });  
 }  
