$(document).ready(function() {
	
	$("#content tr:nth-child(2)").addClass("rows");
	
	$("#content tr:nth-child(1)").addClass("title_row");


 	$('#navbar a').css( {backgroundPosition: "100px 0px"} ).mouseover(function(){
			$(this).stop().animate({backgroundPosition:"(100px -163px)"}, 400)
		})
		.mouseout(function(){
			$(this).stop().animate({backgroundPosition:"(100px 0px)"}, 500)
		});
		
});
