// initialise plugins
		jQuery(function(){
			//jQuery('ul.sf-menu').superfish();
			
			$('#bigimg').animate({ top:'0px'}, 1000, 'linear', function(){
				$('#topimg').animate({ left:'0px'}, 500, 'linear', function(){
					$('#botimg').animate({ left:'0px'}, 500, 'linear', function(){});				
				});				
			});
			
            // add Hover to Go Button for search area
			jQuery('#searchlink').hover(
                function() {
			         jQuery(this).attr('src', 'images/go_over.jpg');
			    },
			    function() {
			         jQuery(this).attr('src', 'images/go.jpg');
			    }
	        ); // jQuery('#searchlink').hover(
	        
			// this initialises the scrollpane on the page.
			//$('#backScrollPane').jScrollPane({showArrows:true, scrollbarWidth: 9, animateTo:true, animateInterval:50, animateStep:5});
	        	
            // initialize lightbox swf
            jQuery('#lbswf').fancybox({
              'overlayShow':true,
              'overlayOpacity':0.85,
              'frameWidth': 725,
              'frameHeight': 525
            });

		}); // jQuery(function()
		
		//window.onload = function() {
		  //$('#backScrollPane').jScrollPane({showArrows:true, scrollbarWidth: 9, animateTo:true, animateInterval:50, animateStep:5});
		//}

