

jQuery.fn.bloooming_picHover = function(){

	this.each(function(){
		$(this).append('<span style="display:none;" class="picHover"></span>');
	
	});


	$(this).hover(
	  function () {
		$(this).children('.picHover').fadeTo('slow', 0.5);
		$(this).children('.new').fadeOut();
		
	  }, 
	  function () {
		$(this).children('.picHover').fadeOut();
		$(this).children('.new').fadeIn();
	  }
	);
	
}


		

