$(document).ready(function(){
	if($("#gallery_slider").length != 0){
		$("#gallery_slider").nivoSlider({
			effect: 'fade',
			directionNav: true,
			pauseTime: 6000,
			captionOpacity: 0.0
			
			
		});
	}
	
	if($("#homepage_images").length != 0){
		$("#homepage_images img").hide();
		$("#homepage_images img").each(function(index){
			$(this).delay(1000).fadeIn("fast");
		})
	}
	
    if($("#intro_pane").length != 0){        
        $("#nuts_pane").hide();
        $("#service_pane").hide();
        $("#partial_pane").hide();
        $("#week_pane").hide();
        $("#alacarte_pane").hide();
        
        $("#nuts_btn").click(function(){
            $("#nuts_pane").show();
            $("#service_pane").hide();
            $("#partial_pane").hide();
            $("#week_pane").hide();
            $("#alacarte_pane").hide();
            $("#intro_pane").hide();
        })
        
        $("#service_btn").click(function(){
            $("#service_pane").show();
            $("#nuts_pane").hide();
            $("#partial_pane").hide();
            $("#week_pane").hide();
            $("#alacarte_pane").hide();
            $("#intro_pane").hide();
        }) 
        
        $("#partial_btn").click(function(){
            $("#partial_pane").show();
            $("#service_pane").hide();
            $("#nuts_pane").hide();
            $("#week_pane").hide();
            $("#alacarte_pane").hide();
            $("#intro_pane").hide();
        })
        
        $("#week_btn").click(function(){
            $("#week_pane").show();
            $("#service_pane").hide();
            $("#partial_pane").hide();
            $("#nuts_pane").hide();
            $("#alacarte_pane").hide();
            $("#intro_pane").hide();
        })
        
        $("#alacarte_btn").click(function(){
            $("#alacarte_pane").show();
            $("#service_pane").hide();
            $("#partial_pane").hide();
            $("#week_pane").hide();
            $("#nuts_pane").hide();
            $("#intro_pane").hide();
        })
        
        $("#intro_btn").click(function(){
            $("#intro_pane").show();
            $("#service_pane").hide();
            $("#partial_pane").hide();
            $("#week_pane").hide();
            $("#nuts_pane").hide();
            $("#alacarte_pane").hide();
        })
    }
});
