// Zebra Stripe Tables

window.addEvent('domready', function() {
	$$("table").each(function(){
		$$('tr:nth-child(first)').setStyles({background: 'top repeat-x #515151 url(/images/mockups/th_bg.gif)'});
		$$('tr:odd').setStyles({ background: 'top repeat-x #e7f2fd url(/images/mockups/tr_bg.gif)' }); 
		//$$('tr:odd').setStyles({ background: 'top repeat-x #e7f2fd' }); this is just the solid color background for the odd rows.
	});
});