$(document).ready(function() {
	initializeAll();
});

function initializeAll(){
	
	// Main navigation animation
	mainnav();

}


function mainnav(){
	

	$("#mainmenu_box > ul > li").hover(function(){
		$(this).toggleClass('hover').find('.m-drop').stop(true, true).animate({ height: "370px" }, 'fast');
	}, function() {
		if($(this).hasClass('sub')) {
			$(this).find('.m-drop').stop(true, true).animate({ height: "0px" }, 'fast', function(){
				$(this).parent().toggleClass('hover');
			});
		} else {
			$(this).removeClass('hover');
		}
	});


	$('#mm li').click(function(){
		window.location = $('head base').attr('href') + $(this).find('a').attr('href');
		return false;
	});
}

