
$().ready(function() {
	
	var dite_2 = $('#header .dite-2');

	animate_header_dite = function() {
	    if(dite_2.css('opacity') < 1.0 ) {
	        dite_2.animate({opacity: 1.0}, 2000, jQuery.noop);
	    } else {
	        dite_2.animate({opacity: 0.0}, 2000, jQuery.noop);
	    }
	};

    setInterval(animate_header_dite, 5000);
});


$(document).ready(function(){
	$("table.alt-colors tbody tr").mouseover(function(){$(this).addClass("over");}).mouseout(function(){$(this).removeClass("over");});
	$("table.alt-colors tbody tr:even").addClass("alt");
});


