$(function(){
	$('table tr:even').css({
		background:'#e9e8ee'
	})
	
		$('tr:even td:nth-child(1)').css({
			background: 'url(/app_themes/default/images/td-left-radius-blue.jpg) no-repeat'
		})
		
		$('tr:even td:nth-child(9)').css({
			background: 'url(/app_themes/default/images/td-right-radius-blue.jpg) right top  no-repeat'
		})
	
	$('table tr:odd').css({
		background:'#ebf9b1'
	})
	
		$('tr:odd td:nth-child(1)').css({
			background: 'url(/app_themes/default/images/td-left-radius-yellow.jpg) no-repeat'
		})
		
		$('tr:odd td:nth-child(9)').css({
			background: 'url(/app_themes/default/images/td-right-radius-yellow.jpg) right top  no-repeat'
		})
	
	
	$('table tr:first').css({
		background:'none'
	})

	$('tr.thead td:first').css({
		background:'url(/app_themes/default/images/td-head-left-radius.jpg) no-repeat'
	})
	
	$('tr.thead td:last').css({
		background: 'url(/app_themes/default/images/td-head-right-radius.jpg) right top no-repeat'
	})
});
