var chosenPage='indexBlock';

$(document).ready(function() {
	
	
	$('.gallery').lightBox({fixedNavigation:true}); // Select all links in object with gallery ID

  $('#index').click(function(){
  	if(chosenPage!='indexBlock'){
	    $('#'+chosenPage).fadeOut(200, function(){ 
	    	$('#indexBlock').fadeIn(200, function(){ 
				    return false;
	    	});	
	    });
		
	    chosenPage='indexBlock';	   
	}	    
  });  
  
    $('#about').click(function(){
  	if(chosenPage!='aboutBlock'){
	    $('#'+chosenPage).fadeOut(200, function(){ 
	    	$('#aboutBlock').fadeIn(200, function(){ 
				    return false;
	    	});	
	    });
		
	    chosenPage='aboutBlock';	   
	}	    
  });  
	
    $('#devign').click(function(){
  	if(chosenPage!='devignBlock'){
	    $('#'+chosenPage).fadeOut(200, function(){ 
	    	$('#devignBlock').fadeIn(200, function(){ 
				    return false;
	    	});	
	    });
	    chosenPage='devignBlock';	   
	}	    
  });  
  
  $('#contact').click(function(){							
  	if(chosenPage!='contactBlock'){
	    $('#'+chosenPage).fadeOut(200, function(){ 
	    	$('#contactBlock').fadeIn(200, function(){
				    return false;
	    	});	
	    });
		
	    chosenPage='contactBlock';	   
	}	    
  }); 
  
 $('#about2').click(function(){
  	if(chosenPage!='aboutBlock'){
	    $('#'+chosenPage).fadeOut(200, function(){ 
	    	$('#aboutBlock').fadeIn(200, function(){ 
				    return false;
	    	});	
	    });
		
	    chosenPage='aboutBlock';	   
	}	    
  });  
  
    $('#contact2').click(function(){							
  	if(chosenPage!='contactBlock'){
	    $('#'+chosenPage).fadeOut(200, function(){ 
	    	$('#contactBlock').fadeIn(200, function(){
				    return false;
	    	});	
	    });
		
	    chosenPage='contactBlock';	   
	}	    
  }); 
  
});

