
/*-- Initializing some jQuery things ----*/

$(document).ready(function(){
	
	// start slideshows
    if ($(".slideshow").length) {
	    $(".slideshow").cycle("fade");
    }
	
	 // this initialises the scollpanes on the page.

    if ($("div.scrollable").length) {
        $("div.scrollable").scrollable({vertical:true, size: 9});
    }
		
});

// init rollovers (mouseover and disjointed)
// http://labs.xddnet.com/jquery-swapimage/example/example.html
	$.swapImage(".swapImage");
	$.swapImage(".swapImageClick", true, true, "click");
	$.swapImage(".swapImageDoubleClick", true, true, "dblclick");
	$.swapImage(".swapImageSingleClick", true, false, "click");
	$.swapImage(".swapImageDisjoint");
