$(document).ready(function(){ guiders.createGuider({ description: "Welcome to LocomotiveCMS,

This guide will help you get up and running with locomotive", buttons: [{name: "Quit Guide", onclick: guiders.hideAll}, {name: "Continue", onclick: guiders.next}], id: "welcome", next: "help", overlay: true, title: "Welcome to Locomotive CMS" }); guiders.createGuider({ attachTo: "#tutorial", buttons: [{name: "Close", onclick: guiders.hideAll}], description: "How To:", id: "help", position: 6, width: 200, title: "Locomotive Tutorials", }); $('#new_page_tutorial').click(function(){ guiders.hideAll(); guiders.show('newpage'); return false; }); guiders.createGuider({ attachTo: "#newpage", buttons: [{name: "Close", onclick: guiders.hideAll}], description: "Click above to make a new page", id: "newpage", position: 6, width: 200, title: "Make a new page", }); });