 $(document).ready(function(){
	$("a.linkclass").click(function()	{
		$('.msg_body').hide();
		$($(this).attr("href")).show();
	});
	$('ul.links li').ahover({moveSpeed: 750, hoverEffect: function() {
        $(this)
            .css({opacity: 0.99})
            .animate({opacity: 0.99}, 750)
            .dequeue();
        $(this).queue(arguments.callee);
    }});
});