/* 	-----------------------------------------------------------------
	* Everymoment Now - (c) Craig Mod 2008 to 2065
	*
	* OBAMCCAIN FUNCTIONS
	* Summer 2008
	*
	----------------------------------------------------------------- */

	function obamccain_init() {
	
	
		tooltip("obamccain");
		
		// - - - - - - - - - - - - - - - - - - - - - - - -
		// setup graph hover states
		//
		// NOTE: this will not work for multiple keywords ... Yappari, we need to
		// rewrite the chart generation, however slightly! 
		//
		// Turning off for launch since functionality of clicking on table row didn't 
		// fire proper click function == odd UX
		//
		/*
		$("#obamccain td.leftData").hover(function () {

			color 		= $(this).css("background-color");
			$(this).css({ backgroundColor: "#efefef", cursor: "pointer" });
			
			$(this).contents().find("a").css({ backgroundColor: "#f00" });
	 	 }, 
		  function () {
			$(this).css({ backgroundColor: color, cursor: "default" });
			$(this).contents().find("a").css({ backgroundColor: "#000" });
	
		  }
		);

		$("#obamccain td.leftData").click(function (event) {
			$(this).contents().find("a").trigger('click');
		});
		
		
		$("#obamccain td.rightData").hover(function () {

			color 		= $(this).css("background-color");
			$(this).css({ backgroundColor: "#efefef", cursor: "pointer" });
			
			$(this).contents().find("a").css({ backgroundColor: "#f00" });

		  }, 
		  function () {
			$(this).css({ backgroundColor: color, cursor: "default" });
			$(this).contents().find("a").css({ backgroundColor: "#000" });
		  }
		);

		$("#obamccain td.rightData").click(function (event) {
			$(this).contents().find("a").trigger('click');
		});
		*/

		
	}