		var pg = "rs";
		$(function() {
			$(".col5").addClass("hideme");
			$(".col6").addClass("hideme");
			$(".col7").addClass("hideme");
	
		    $("#comp-who").click(function () {
				$(".col5").addClass("hideme");
				$(".col6").addClass("hideme");
				$(".col7").addClass("hideme");
				$(".col2").removeClass("hideme");
				$(".col3").removeClass("hideme");
				$(".col4").removeClass("hideme");
				$("#comp-tabs").css("background-image","url(../images/compare-tabs.gif)");
			});
		    $("#comp-what").click(function () { 
				$(".col2").addClass("hideme");
				$(".col3").addClass("hideme");
				$(".col4").addClass("hideme");
				$(".col5").removeClass("hideme");
				$(".col6").removeClass("hideme");
				$(".col7").removeClass("hideme");
				$("#comp-tabs").css("background-image","url(../images/compare-tabs-2.gif)");
			});
			
			$("#compare tbody tr").hover(
			  function () {
				$(this).children(".col1").css("background-image","url(../images/compare-cat-over-bg.gif)");
				$(this).children(".col1").children("div").css("background-image","url(../images/compare-cat-over-div-bg.gif)");
			  },
			  function () {
				if ($(this).hasClass("rowodd")) {
					$(this).children(".col1").css("background-image","url(../images/compare-cat-odd-bg.gif)");
					$(this).children(".col1").children("div").css("background-image","url(../images/compare-cat-odd-div-bg.gif)");
				} else {
					$(this).children(".col1").css("background-image","url(../images/compare-cat-even-bg.gif)");
					$(this).children(".col1").children("div").css("background-image","url(../images/compare-cat-even-div-bg.gif)");
				}
			  }
			);
			 function GoToURL(j) {
				window.status=('Connecting....')
				j.value = "Connecting ";
				var location=j;
				this.location.href = location;
				window.status=('Connecting to ' + location + '  Please wait........');
			 }
			$("#compare tbody tr").click(function () {
				var eurl = $(this).attr("rel");
				GoToURL(eurl);
			});

//var is_chrome = navigator.userAgent.toLowerCase().indexOf('chrome');
			//if(is_chrome > -1) {
			//	$("#comp-tabs").css("left","89px");
			//}
			$("#note img[title]").tooltip('#note-tip');
//			$("#comp-tabs div").tooltip({ 
//				position: "bottom center",
//				effect: "fade",
//				opacity: 0.7,
///				tip: '#note-tip-bottom'
//			});

//tool-tips
//			$(".note").tooltip({ 
//				tip: '#dynatip',  
//				position: "bottom left", 
//				opacity: 0.7, 
//			});
		});
	
