(function($){
	
//	var zindex = 1;
//
	$.fn.piano = function( callback ) {		
		return this.each(function() {			
//			//$(this).css('z-index', zindex ++);			
			$(this).click(function(event) {
				event.stopPropagation();
				//$(this).css('z-index', zindex++);
				if (callback) callback(event.target);
			});			
		});		
	};
	
})(jQuery);
