// JavaScript Document


(function($) {
// Shell for your plugin code
$.fn.hide_me = function() {
// Plugin code
return this.each(function() {
// Do something to each item


$(this).mouseover(function () {
		$(this).find(".hide_me").css("visibility","hidden");
		//	'console.log(this)'
	  });
$(this).mouseout(function () {
		$(this).find(".hide_me").css("visibility","visible");
	  });
});

}
})(jQuery);
