// JavaScript Document
	titles = new Array();
	contents = new Array();
	width = new Array();
	titles[0] = "NR:";	
		contents[0] = "No Reserve auction.";
		width[0] = 120;
	titles[1] = "Just Buy it:";
		contents[1] = "Available for immediate purchase.";
		width[1] = 200;
	titles[2] = "Just Opened:";
		contents[2] = "Recently viewed by a user.";
		width[2] = 160;
	titles[3] = "Hot";	// remove
		contents[3] = "Auction listings placed prominently on Johareez.com homepage.";
		width[3] = 250;
	titles[4] = "Free Shipping:";
		contents[4] = "Free shipping on listing.";
		width[4] = 140;

function display_tooltip(index){
		//Tip('<strong>' + titles[index] + '</strong></br> '+ contents[index] +'', BALLOON, true, ABOVE, true, OFFSETX, -10, WIDTH, 250, TEXTALIGN, 'justify', FADEIN, 0, FADEOUT, 0, PADDING, 8);
		Tip( contents[index] +'', BALLOON, true, ABOVE, true, OFFSETX, -10, WIDTH, width[index], TEXTALIGN, 'justify', FADEIN, 0, FADEOUT, 0, PADDING, 8);
	}