	var $j = jQuery.noConflict();
	
	$j(function() {	
		$j("#slider").easySlider({
			auto: true,
			continuous: true,
			speed: 800,
			pause: 7000,
			controlsShow: false
		});
		
	});
		
		$j(function() {
			// initialize scrollable
			$j("div.scrollable").scrollable({
				size: 1,
				clickable: false
			}).circular();
		});	
		$j(function() {
			$j("#triggers a").overlay({
				 
				// each trigger uses the same overlay with the id "gallery"
				target: '#gallery',
			 
				// optional exposing effect
				expose: '#202d62',
				zIndex: 9998
			 
			// let the gallery plugin do its magic!
			}).gallery({
			 
				// the plugin accepts its own set of configuration options
				speed: 800
			});	
		});		