jQuery.noConflict();
jQuery(document).ready(function($) {
   $("#starttable thead").find("th").eq(0).hover(
    function () {
      $("#starttable tbody").find("td").eq(0).css("background-color", "#f9d930");
    }, 
    function () {
      $("#starttable tbody").find("td").eq(0).css("background", "");
    }
   );
   $("#starttable thead").find("th").eq(1).hover(
    function () {
      $("#starttable tbody").find("td").eq(1).css("background-color", "#f9d930");
    }, 
    function () {
      $("#starttable tbody").find("td").eq(1).css("background", "");
    }
   );
   $("#starttable thead").find("th").eq(2).hover(
    function () {
      $("#starttable tbody").find("td").eq(2).css("background-color", "#f9d930");
    }, 
    function () {
      $("#starttable tbody").find("td").eq(2).css("background", "");
    }
   );
   
   
    $("#starttable thead").find("td").eq(0).hover(
    function () {
      $("#starttable tbody").find("td").eq(0).css("background-color", "#f9d930");
    }, 
    function () {
      $("#starttable tbody").find("td").eq(0).css("background", "");
    }
   );
   $("#starttable thead").find("td").eq(1).hover(
    function () {
      $("#starttable tbody").find("td").eq(1).css("background-color", "#f9d930");
    }, 
    function () {
      $("#starttable tbody").find("td").eq(1).css("background", "");
    }
   );
   $("#starttable thead").find("td").eq(2).hover(
    function () {
      $("#starttable tbody").find("td").eq(2).css("background-color", "#f9d930");
    }, 
    function () {
      $("#starttable tbody").find("td").eq(2).css("background", "");
    }
   );
	moveNewsticker();


});
 
 
function moveNewsticker() {
	jQuery('#spacer-newsticker-content').css("margin-left", "672px");
	jQuery('#spacer-newsticker-content').animate({
		marginLeft: "-672px"
		}, 24000, "linear");
	window.setTimeout("moveNewsticker()", 25000);	
}
 
