$(function(){
	$('#head').flash({
		src: '/media/top_flash.swf',
		width: 1000,
		height: 342
	});
	
	$('#content .menu TR').hover(function(){
        $(this).css('background', '#f4cf90');
    },function(){
        $(this).css('background', 'transparent');
    });
});