
function languageCtrButton() {
	window.open('http://www.nflrc.hawaii.edu/media/lang_center_pacific.mp3',
				'',
				'resizable=no,location=no,menubar=no,scrollbars=no,status=no,toolbar=no,fullscreen=no,dependent=no,width=500,height=400');
}

$(document).ready(function() {

    $(".menuItem").hover(
    
        function() {
        
            $(this).children().not(".mid").animate({
                opacity: 1
            }, 500);
            $(this).children().filter(".mid").animate({
                backgroundColor: "#3167d2"
            }, 500);
        
        },
        function() {
        
            $(this).children().not(".mid").animate({
                opacity: 0
            }, 500);
            $(this).children().filter(".mid").animate({
                backgroundColor: "#05379c"
            }, 500);
        
        }
    
    );

});