/*
======================================================================
    
    Jump navigation script v.10
    Requires jQuery 1.1.2 or above.
    
    By Neil Ford - www.neilford.net
    
======================================================================
*/

           $(document).ready(function() {
                
                $("#quickLinks").css("display","none");
            
            	$("a.toggle").toggle(function() {
            		$("#quickLinks").animate({
            			height: 'show',
            			opacity: 'show'
            		}, '10');
            		
            	}, function() {
            		$("#quickLinks").animate({
            			height: 'hide',
            			opacity: 'hide'
            		}, '10')
            		
            	});
            });