$(document).ready(function(){

jQuery.fn.heightToggle = function(speed,easing,callback){
	return this.animate({height: 'toggle'}, speed, easing, callback);
	};

//Menu
var $itemTitle;
$('#tabs ul li.page_item').hover(
								 
			function() {
					$('a', this).attr('metainfo', $('a', this).attr('title')) // copy title attribute to metainfo attribute 
                    .attr('title', ''); // remove title 															
					$('ul', this).fadeIn(300);	
			},
			function() {
					$('a', this).attr('title', $('a', this).attr('metainfo'));
					$('ul', this).fadeOut(500);
			});

});