
$(document).ready(function()
{ 
	// Enable PNG Fix for IE6
	$(document).pngFix(); 
	
	// Tiger-stripe tables			 
    $('table tr').hover(
        function() { $(this).addClass ('hover'); }, 
        function() { $(this).removeClass ('hover'); }
    );       
    $("table tr:odd").addClass("oddrow");  
});
