// JavaScript Document
topOffset = -350;
leftOffset1 = 50;
leftOffset2 = 0;
leftOffset3 = -500;
if (/MSIE (\d+\.\d+);/.test(navigator.userAgent)){ //test for MSIE x.x;
 var ieversion=new Number(RegExp.$1) // capture x.x portion and store as a number
  if (ieversion>=6)
  	topOffset = -225,
	leftOffset1 = -180;
	leftOffset2 = -180;
	leftOffset3 = -700;
}
$(document).ready(function() {
	$('a.jt:eq(0)').cluetip({
	  cluetipClass: 'jtip', 
		arrows: false, 
		dropShadow: false,
		sticky: true,
		mouseOutClose: true,
		closePosition: 'top',
		showTitle:false,
		closeText: '<img src="images/cross.png" alt="close" />',
		width: '620',
		height: '301',
		 fx: { open: 'fadeIn'},
		positionBy:'fixed',
		topOffset:topOffset,
		leftOffset:leftOffset1
	});

	$('a.jt:eq(1)').cluetip({
	  cluetipClass: 'jtip', 
		arrows: false, 
		dropShadow: false,
		sticky: true,
		mouseOutClose: true,
		closePosition: 'top',
		showTitle:false,
		closeText: '<img src="images/cross.png" alt="close" />',
		width: '620',
		height: '301',
		 fx: { open: 'fadeIn'},
		positionBy:'fixed',
		topOffset:topOffset,
		leftOffset:leftOffset2
	});
	$('a.jt:eq(2)').cluetip({
	  cluetipClass: 'jtip', 
		arrows: false, 
		dropShadow: false,
		sticky: true,
		mouseOutClose: true,
		closePosition: 'top',
		showTitle:false,
		closeText: '<img src="images/cross.png" alt="close" />',
		width: '620',
		height: '301',
		 fx: { open: 'fadeIn'},
		positionBy:'fixed',
		topOffset:topOffset,
		leftOffset:leftOffset3
	});
});