(function($){  
 $.fn.extendAnchor = function() {  
  
    return this.each(function() {
 
			$(this).mouseover(function(){
				$(this).addClass('hover');
			});
			$(this).mouseout(function(){
				$(this).removeClass('hover');
			});
			$(this).click(function(){
				window.location=$(this).find("a").attr("href"); return false;
			});
	
    });  
 };  
})(jQuery); 


