/*!
 * Bloooming Shop Plugin v0.1
 * http://www.bloooming.com/
 *
 * Copyright 2010, Tina Coric
 * All rights reserved
 *
 * Date: Sun Apr 04 22:22:22 2010 -0500
 */


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();
	  }
	);
	
}


		

