$(document).ready(function(){
$(".table1 tr").mouseover(function() {$(this).addClass("over");}).mouseout(function() {$(this).removeClass("over");});
$(".table1 tr:even").addClass("alt");
});

$(document).ready(function(){
//$(window).load(function () {						   
	$('.menu_header a').css({ opacity:'0', background:'#ffffff'}).hover(function(){
		$(this).animate({opacity:'0.1'},'fast')},
		function(){
			$(this).animate({opacity:'0'},'slow')
		})
	
	$('.menu_top a').hover(function(){
		$(this).stop().css({ opacity:'0.1'})
				.animate({opacity:'1'},'fast')
		},
		function(){
			$(this).stop().css({ opacity:'0.1'})
			$(this).animate({opacity:'1'},'slow')
		})
//	});
});
