$(document).ready(function(){
    $('ul a').hover(function(){
        if ($(this).parent().children('ul').length) {
            $(this).parent().children('ul').slideToggle(300);
            return false;
        }
    }, function(){return false;});
});

function initMenu(){
	var _menu = document.getElementById("rec-post");
	if(_menu){
		var menu_list = _menu.getElementsByTagName('li');
		for(var i = 0 ; i < menu_list.length ; i++){
			menu_list[i].onmouseover = function(){ this.className += ' hover ';}
			menu_list[i].onmouseout = function(){ this.className = this.className.replace('hover', '');}
		}
	}
	var _menu = document.getElementById("rec-com");
	if(_menu){
		var menu_list = _menu.getElementsByTagName('li');
		for(var i = 0 ; i < menu_list.length ; i++){
			menu_list[i].onmouseover = function(){ this.className += ' hover ';}
			menu_list[i].onmouseout = function(){ this.className = this.className.replace('hover', '');}
		}
	}	
}

if (window.attachEvent && !window.opera){
	window.attachEvent("onload", initMenu);
}

