
/* 
Image Hover by dungl@vietiso.com
(c)2011 April
*/
;(function($){
	$.fn.imageHover=function(callback){
		if(typeof callback!=='function')
			var callback=function(){};
		return this.hover(function(){
			this.hide();
		});
	};
})(jQuery);
