(function($){
   $.fn.hoverBorder = function(hoverColor, outColor){
      var element = $(this);
      element.each(function(){
      	$$ = $(this);
      	$$.hover(
      		function(event){
      			current = $(this);
				current.css('borderColor', hoverColor);
      		},
      		function(event){
      			current = $(this);
      			current.css('borderColor', outColor);
      		}
      	)
      });
   }
})(jQuery);
