/*$('#fzg').click(menufnc);*/

function menufnc ()
{
    jQuery('#subnav').animate(
    {
        height: 'show',
        opacity: 'show'
    }
    ,
    {
        duration:2000,
        specialEasing: {
            height: 'easeInCirc',
            opacity: 'easeInCirc'
        }
    }
    )
}
