
$(document).ready(function(){
    $('.title-text').flash({
        src: '../images/flash/flash-V-1.swf',
	    width: 955,
    	height: 253,
    	version: '9.0.0',
		quality: 'high',
		wmode: 'transparent',
		bgcolor: '#ffffff'    	        
    });
    $('.sublogo').flash({
        src: '../images/flash/logo-V-1b.swf',
	    width: 200,
    	height: 83,
    	version: '9.0.0',
		quality: 'high',
		wmode: 'transparent',
		bgcolor: '#F1F1F1'    	        
    });
    $('.subsublogo').flash({
        src: '../../images/flash/logo-V-1b.swf',
	    width: 200,
    	height: 83,
    	version: '9.0.0',
		quality: 'high',
		wmode: 'transparent',
		bgcolor: '#F1F1F1'    	        
    });
    $('ul#menu li a').wrapInner('<span></span>');
    $('ul#menu li a[href="/"]').removeAttr('href');
    
});



function initMenu()
{
	var nodes = document.getElementById("menu").getElementsByTagName("li");
	for (var i=0; i<nodes.length; i++)
	{
		nodes[i].onmouseover = function()
		{
			this.className += " hover";
		}
		nodes[i].onmouseout = function()
		{
			this.className = this.className.replace(" hover", "");
		}
	}
}
if (document.all && !window.opera) attachEvent("onload", initMenu);