// JavaScript Document

$(document).ready(function(){
		
					
				
				$("a.news").toggle(
				
				function(){
				  	$("div.nav-news").stop().animate({height:'50px'},{queue:false,duration:400});
				},
	  			
				function(){
				  	$("div.nav-news").stop().animate({height:'0px'},{queue:false,duration:400});
				}
			); 
				
				$("a.gallery").toggle(
						
						function(){
						  	$("div.nav-gallery").stop().animate({height:'75px'},{queue:false,duration:400});
						},
			  			
						function(){
						  	$("div.nav-gallery").stop().animate({height:'0px'},{queue:false,duration:400});
						}
					); 
				
				$("a.about").toggle(
						
						function(){
						  	$("div.nav-about").stop().animate({height:'75px'},{queue:false,duration:400});
						},
			  			
						function(){
						  	$("div.nav-about").stop().animate({height:'0px'},{queue:false,duration:400});
						}
					); 
				
				$("a.repertoire").toggle(
						
						function(){
						  	$("div.nav-repertoire").stop().animate({height:'100px'},{queue:false,duration:400});
						},
			  			
						function(){
						  	$("div.nav-repertoire").stop().animate({height:'0px'},{queue:false,duration:400});
						}
					); 
				
				$("a.download").toggle(
						
						function(){
						  	$("div.nav-download").stop().animate({height:'50px'},{queue:false,duration:400});
						},
			  			
						function(){
						  	$("div.nav-download").stop().animate({height:'0px'},{queue:false,duration:400});
						}
					); 
				
				
});
