jQuery(document).ready(function() {

// Slideshow
	jQuery('#slides') 
		.cycle({ 
		 fx: 'fade', 
		 speed: 2500, 
		 timeout: 200,
		 pause: 1
	});

	jQuery('a.external').click(function(){
        window.open(this.href);
        return false;
    });																
	// SuperFish
	jQuery('ul.sf-menu-side').superfish({animation:{ opacity:"show"}});
	
	// Open New Window
	jQuery('a.new-window').click(function(){
		window.open(this.href);
		return false;
	});
	
	// Lightbox
	jQuery('a[@rel*=gallery]').lightBox();
	
	$('#sitemap').hide();
	$('a#toggle-sitemap-links').click(function() {
		$('#sitemap').slideToggle(400);
		return false;
	}); 
		
});



