jQuery(document).ready(function(){
	jQuery('#slideshow').loopedSlider({
		autoStart: 7500,
		hoverPause: true
	});
	jQuery( "a.glow" ).mouseover( function() {
		jQuery( this ).children( "img" ).stop( true, true ).animate({
			opacity: 0.4
		}, 200, "swing", function() {
			jQuery( this ).animate({
				opacity: 1
			}, 200 );
		});
  	});
	jQuery('.tooltip').tipsy({gravity: 'n'}); // n | s | e | w.
	
	jQuery('#menu').containedStickyScroll({
        unstick: false 
    });


});


