// javascript to make the 
// table row backgrounds 
// alternate in colour

$(document).ready(function(){

	var count = 0; //start the counter at 0
	
	$("table tr").each(function(){
		if (count % 2 == 0) {
			$(this).css('background-color','#ededed');
		}
		count += 1;
	});
});
