/**
 * @projectDescription	Script for custom scrollbar
 * 
 * @author	Ryan Sullivan ryan@thresholdinteractive.com
 * @version 0.1
 * requires MooTools 1.11, Threshold.Scrollbar.js
 */
if(typeof(agency3)=="undefined"){var agency3={};}
agency3.scrollbar = function() {
	var win = window;

	// initialize
	win.addEvent('domready',function(){
		threshold.scrollbar.addTo($('contentMain'));
	});

	// public members
	return{
	};
}();

