﻿
$('document').ready(function() {
	
	$('.tipZone').each(function() {
		var toolTipWidth = $($(this).parent('.toolTip')).width();
		var brightZoneHeight = $($(this).children('.brightZone')).height();
		if($(this).attr('class').indexOf('lastZone') != -1) {
			$(this).css('right',(toolTipWidth-50)+'px');
			$(this).css('height',(brightZoneHeight+26)+'px');
		} else {
			$(this).css('left',(toolTipWidth-25)+'px');
			$(this).css('height',(brightZoneHeight+26)+'px');
			$(this).css('backgroundPosition','0px '+brightZoneHeight+'px');
		}
	});
	$('.toolTip').hover(function(){
		$($(this).children("div")[0]).css("visibility","visible");
	},function(){
		$($(this).children("div")[0]).css("visibility","hidden");
	});
	
	
});
