$(function() {
	$("ul#menu_tags span").css("opacity","0");
	$("ul#menu_tags span").hover(function () {
		$(this).stop().animate({
			opacity: 1
		}, 'slow');
	},
	function () {
		$(this).stop().animate({
			opacity: 0
		}, 'slow');
	});
});

$(document).ready(function(){
    $("ul#menu_tab a").click(function(){
    $(this).blur();
    });
    $("ul#menu_tab li").mouseover(function(){
    $(this).stop().animate({height:'70px'},{queue:false, duration:600, easing: 'easeOutBounce'})
    });
    $("ul#menu_tab li").mouseout(function(){
    $(this).stop().animate({height:'20px'},{queue:false, duration:600, easing: 'easeOutBounce'})
    });
});

