$(document).ready(function()
{

	

$(".stripes tr:not([th]):even").addClass("even");

	

$(".stripes tr:not([th]):odd").addClass("odd");
});

function showDiv(a)
{
	if (document.getElementById(a).style.display == 'block'){
		$('#'+a).hide("slow");}
	else{
		for (i=1; i<=6; i++){
			$('#details' + i).hide("slow");}		
		$('#'+a).show("slow");}
}
