(function($) {
	$.fn.hover = function(config) {
		var defaults = $.extend({
		}, config);
		
		return this.each(function() {
			$(this).mouseover(function(e) {
				$(this).addClass('hover');
			});
			
			$(this).mouseout(function(e) {
				$(this).removeClass('hover');
			});
		});
	};
})(jQuery);
