(function(jQuery){
	jQuery.fn.hoverForIE6=function(option){
		
		var s=jQuery.extend({current:"hover"	},option||{});
		jQuery.each(this,function(){
			jQuery(this).bind("mouseover",function(){
				jQuery(this).addClass(s.current);
			}).bind("mouseleave",function(){
				jQuery(this).removeClass(s.current);
			})
		})
	}
})(jQuery);


