$(function(){
$('.links div.item li:nth-child(even)').addClass('even');
});
$(function(){
$('table tr:nth-child(odd)').addClass('odd');
$('table tr:nth-child(even)').addClass('even');
});
$(function(){
$('table td:nth-child(1)').addClass('td1');
$('table td:nth-child(2)').addClass('td2');
$('table td:nth-child(3)').addClass('td3');
$('table td:nth-child(4)').addClass('td4');
$('table td:nth-child(5)').addClass('td5');
$('table td:nth-child(6)').addClass('td6');
});
$(function(){
$('#home-news dt:nth-child(3)').addClass('right');
$('#home-news dt:nth-child(7)').addClass('right');
$('#home-news dt:nth-child(11)').addClass('right');
});
$(function(){
$('#Information div:nth-child(odd)').addClass('odd');
$('#Information div:nth-child(even)').addClass('even');
});
