$(document).ready(function(){
	// Hide the menu initially
	$(".hmenu, .tmenu").hide();
	
	// Toggle the menu on and off
	$("a.hmenuToggle").toggle(function(){
		$(".hmenu").animate({ height: 'show', opacity: 'show' }, 'normal');
	},function(){
		$(".hmenu").animate({ height: 'hide', opacity: 'hide' }, 'normal');
    });
	
	$("a.tmenuToggle").toggle(function(){
		$(".tmenu").animate({ height: 'show', opacity: 'show' }, 'normal');
	},function(){
		$(".tmenu").animate({ height: 'hide', opacity: 'hide' }, 'normal');
    });
});