$(document).ready(function() {
 
    //get all link with class panel
    $('a.panel').click(function(debugAffichage){
 	debugAffichage.preventDefault(); 
                //reset and highlight the clicked link
        $('.panel').removeClass('selected');
        $(this).addClass('selected');
         
        //grab the current item, to be used in resize function
        current = $(this);
         
                //scroll it to the destination
        $('#wrapper').scrollTo($(this).attr('href'), 800);     
         
                //cancel the link default behavior
        return false;
		
    });
	
	$('a.panel_b').click(function(debugAffichage){
         debugAffichage.preventDefault();
        //grab the current item, to be used in resize function
		$('.panel').removeClass('selected');
        current = $(this);
         
                //scroll it to the destination
        $('#wrapper').scrollTo($(this).attr('href'), 800);     
         
                //cancel the link default behavior
        return false;
    });
 
     
});




