// JTELECT.COM


// TOOL TIP CODE ***********************
$(function() {
	$(".ttip").hover( 	
		function() { $(this).contents("span:last-child").css({ display: "block" }); },
		function() { $(this).contents("span:last-child").css({ display: "none" }); }
		); 
	// $(".ttip").click(
	//	function() { $(this).contents("span:last-child").css({ display: "block" }); }
	//	);
	$(".ttip").mousemove(function(e) {
		var mousex = e.pageX + 0;
		var mousey = e.pageY + 20;
		$(this).contents("span:last-child").css({  top: mousey, left: mousex });
		});
});


// Show/Hide selected info *************
$(function() {
	$(".ubtn").click(function() {
		$(".dcon").hide();
	});
		
	
	// check for each btn - requires 13 statements
	// $("#btn13").click(function() { $("#dl13").show(); });
	// OR as follows
	
	$("td[id^='btn']").click(function() {
		var tgt=this.id;
		tgt=tgt.replace('btn','#dl');
		$(tgt).show(); });
});


