i am looking for the correct piece of the following script to use as a window load function to get the layer to toggle open on load
this is the code for expanding the layer
$(function() {
Sitemap.init();
});
var Sitemap = {
Content: null,
Trigger: null,
init: function() {
var cc = this;
cc.Content = $('#Sitemap div.content');
cc.Trigger = $('#ToggleSiteMap');
cc.events();
},
events: function() {
var cc = this;
cc.Trigger.click(function(){
cc.Content.slideToggle();
return false;
});
}
};
Which part should I take to create an onload script like the below that will open the layer on load ? Have tried all elements and cant seem to get it to work. Would really appreciate the help .. thanks in advance
<SCRIPT TYPE="text/javascript"> window.onload=help needed here;
</SCRIPT>