$(document).ready(function() {
		$('a.jt:eq(0)').cluetip({
		cluetipClass: 'jtip', 
		arrows: true, 
		dropShadow: false,
		sticky: true,
		mouseOutClose: true,
		closePosition: 'title',
		closeText: '<img src="images/close.gif" alt="close" />'
	  });	
		
		$('a.jt1:eq(0)').cluetip({
		cluetipClass: 'jtip', 
		arrows: true, 
		dropShadow: false,
		sticky: true,
		mouseOutClose: true,
		closePosition: 'title',
		closeText: '<img src="images/close.gif" alt="close" />'
	  });
		
		$('a.jtg:eq(0)').cluetip({
		cluetipClass: 'jtip', 
		arrows: true, 
		dropShadow: false,
		sticky: true,
		mouseOutClose: true,
		closePosition: 'title',
		closeText: '<img src="images/close.gif" alt="close" />'
	  });
	
	
	$("#get-inv a").hover(function(){
		$(this).next("ul").show();						   
	},
	function(){
		$(this).next("ul").hide();	
	});
	$("#get-inv .inv-list").hover(function(){
		$(this).show();						   
	},
	function(){
		$(this).hide();	
	});
	
	$(".get-inv-left a").hover(function(){
		$(this).next("ul").show();						   
	},
	function(){
		$(this).next("ul").hide();	
	});
	$(".get-inv-left .inv-list").hover(function(){
		$(this).show();						   
	},
	function(){
		$(this).hide();	
	});
});