//when document is loaded...
$(document).ready(function(){
    //catch the click on the "more infos" button at the top of the page
    $('.jqueryscroll').click(function(){
        // get attribute
        var sCurrentId = $(this).attr("id");
     
        // strip id
		    // name_prefix_id/class_value
		    var aOptions = sCurrentId.split("_");
		    
		    // prefix
		    var sPrefix = '.';
		    
		    // if id
		    if(aOptions[2] == 'id') {
            sPrefix = '#';       
        } 
		    
		    // scroll to
		    $.scrollTo(sPrefix + aOptions[3], 1200 );
		    
		    // return false to abort link
		    return false;
    });
    
    // auto scroll?
    if(bScroll) {
        $.scrollTo(sFaqId, 1200);            
    }
});

