﻿$(document).ready(function(){
$("td.forumLastPostTd:odd").css("background-color", "#FFFFFF");
$("td.forumNameTd:odd").css("background-color", "#FFFFFF");
$("td.forumThreadTd:odd").css("background-color", "#FFFFFF");
$("td.forumIcoTd:odd").css("background-color", "#FFFFFF");
$("td.forumPostTd:odd").css("background-color", "#FFFFFF");
$("td.forumThreadTd:even").css("background-color", "#eaffea");
$("td.forumNameTd:even").css("background-color", "#eaffea");
$("td.forumLastPostTd:even").css("background-color", "#eaffea");
$("td.forumIcoTd:even").css("background-color", "#eaffea");
$("td.forumPostTd:even").css("background-color", "#eaffea");//Скрипт разработал http://forucoz.com/
 $("td.forumThreadTd:even").hover(function() {$(this).css("background-color", "#FFFFFF");}, function() {$(this).css("background-color", "#eaffea");});
 $("td.forumThreadTd:odd").hover(function() {$(this).css("background-color", "#eaffea");}, function() {$(this).css("background-color", "#FFFFFF");});
 $("td.forumNameTd:even").hover(function() {$(this).css("background-color", "#FFFFFF");}, function() {$(this).css("background-color", "#eaffea");});
 $("td.forumNameTd:odd").hover(function() {$(this).css("background-color", "#eaffea");}, function() {$(this).css("background-color", "#FFFFFF");});
 $("td.forumLastPostTd:even").hover(function() {$(this).css("background-color", "#FFFFFF");}, function() {$(this).css("background-color", "#eaffea");});
 $("td.forumLastPostTd:odd").hover(function() {$(this).css("background-color", "#eaffea");}, function() {$(this).css("background-color", "#FFFFFF");});
 $("td.forumIcoTd:even").hover(function() {$(this).css("background-color", "#FFFFFF");}, function() {$(this).css("background-color", "#eaffea");});
 $("td.forumIcoTd:odd").hover(function() {$(this).css("background-color", "#eaffea");}, function() {$(this).css("background-color", "#FFFFFF");});
 $("td.forumPostTd:even").hover(function() {$(this).css("background-color", "#FFFFFF");}, function() {$(this).css("background-color", "#eaffea");});
 $("td.forumPostTd:odd").hover(function() {$(this).css("background-color", "#eaffea");}, function() {$(this).css("background-color", "#FFFFFF");});
});