/* xetrix: 20040809 Created */
/* xetrix: 20041105 Readapted here */

$(document).ready(function() {
	$("#header ul li, #header .button").mouseover(function() {
		$(this).addClass('hot');
	});
	$("#header ul li, #header .button").mouseout(function() {
		$(this).removeClass('hot');
	});
});
