
	$.fn.ezpz_tooltip.positions.staticLeft = function(contentInfo, mouseX, mouseY, offset, targetInfo) {
		contentInfo['top'] = targetInfo["top"]+10;
		contentInfo['left'] = targetInfo["left"]-190;

		return contentInfo;
	};

	$(document).ready(function(){

	var i=1;	
while (i<=12)
  {	
	
	$('#static-target-'+i).ezpz_tooltip({
		contentPosition: 'aboveStatic',
	//	stayOnContent: true,
			offset: 0,
		contentId: 'static-content-'+i,
		showContent: function(content) {
			content.delay(1000).fadeIn('slow');
		},
		hideContent: function(content) {
			// if the showing animation is still running, be sure to stop it
			// and clear the animation queue. otherwise, repeatedly hovering will
			// cause the content to blink.
			content.stop(true, true).fadeOut('slow');
		}
	});
	i++;
}


var i=1;	
while (i<=12)
{		
	$("#static-target-w"+i).ezpz_tooltip({
		contentPosition: 'aboveStatic',
		offset: 0,
		showContent: function(content) {
			content.delay(500).fadeIn('slow');
		},
		hideContent: function(content) {
			content.stop(true, true).fadeOut('slow');
		}
	});
i++;
}
	//// end here
	
	});


