jQuery(function(jQuery){
		jQuery('div.linhaParceirosInternoRight').children().click(function(ev){
				var wrapper = jQuery(this).parent().parent()
					, label = wrapper.find('.jqDockLabel').text() || ''
					, t = [
							'you clicked on'
						, '#' + wrapper.closest('.jqDocked').attr('id') + ', option ' + (wrapper.index()+1)
						];
				if(label){ t.push('"' + label + '"'); }
    		jQuery('#showClicked').stop().hide().css({opacity:1}).html(t.join('<br />')).show().fadeOut(5000);
				this.blur();
				return false;
      });
		var changeSource = function(i){
				//use the 'alt' attribute if present, else construct a PNG path from the 'src'...
				return (this.alt) ? false : this.src.replace(/(jpg|gif)$/,'png');
		}
			//options are only set/shown where they differ from the defaults...
			, demoOpts = [
				// #menu1 : horizontal, labelled, with expanding image set by function...
		    {align:'middle', size:40, fadeIn:100, fadeLayer:'dock', flow:true, distance:150, coefficient:2, labels:true, source:changeSource}
		  ];
    jQuery('div.linhaParceirosInternoRight').each(function(i){
    		jQuery(this).jqDock(demoOpts[i]);
      });
  });
