jQuery.noConflict();
jQuery(function(){
	jQuery('.toggle').addClass('preload');
	jQuery('.toggler').click(function(){ jQuery(this).next('.toggle').slideToggle('slow'); });
	var anch = window.location.href.slice(window.location.href.indexOf('#')+1);
	jQuery('.'+anch+'.toggle').slideToggle('slow');
	if(anch!=window.location.href){ window.location='#'+anch; }
});
jQuery(window).load(function(){
	jQuery("#promo").scrollable({ circular: false });
	jQuery("#projects").scrollable({ circular: true });
});

