!Site structure In the root site you have several files or directories : *index.html : is the main HTML file calling all the JQuery files. You can modify this file if you know jquery *bin (dir) : contains shellsxcript to automatize the tar and send of files onto the server *css (dir) : contains index.css in charge of site style, and other css needed by JQuery plugins *doc (dir) : empty dir containing documentations in PDF or other format if you want to link them *img (dir) : contains all the images needs by the site *js (dir) : contains all the javascripts need for the site. Someones are third parts some other are made for JQuery Fast Site. *texts (dir) : contains all the texts files containing the text. For example, the file you are reading is Documentation.txt and it is located in this direcorty. ! The main file you have to change js/jquery.fast.site.config.js The file contains several variables : Each line ends with a ; * JQFSTitle : You can modify this variable to modify the title of your site [[ For example : var JQFSTitle="Gilles home page"; ]] * JQFSLogo : The logo of the site, you can use png or jpg file. [[ The size of the logo is done by CSS #logo value width. You can set the position with other CSS values for #logo For example : var JQFSLogo="img/logo.png"; ]] *JQFSSubtitle : is a subtile displayed after your title [[ var JQFSSubtitle="Your JQuery site in 10 minutes"; ]] *JQFSMenu : is an array to define all the menus you see. You will have to define a txt file for each item in the menu. [[ For example for this document : var JQFSMenu = new Array("Informations","Documentation","Text tags","Download","Contact"); You will have to create all the txt files in texts dir : Informations.txt, text tags.txt, Download.txt and Contact.txt ]] *JQFSMoremsg : is a list of messsage displayed when you slide a region ( see more .., hide..., see again...) [[ For example for this document : var JQFSMoremsg = new Array("see more...","hide...","see again..."); ]] *JQFSMailsubject : when mail are expanded to mailto URL the subject is filled with this value [[ For example : var JQFSMailsubject="Information about JQ Fast Site"; By clicking on this gilles@sdf.org, you will see the subject mail of your mailer filled with the value. ]] *JQFSOtherpage : are other page accessible inside page and not by the menus. See the ::Text tags:: page [[ var JQFSOtherpage=new Array("Other page"); ]]