/* Author: Simon Siegenthaler 2011

*/



// wait until document is fully scriptable
$(document).ready(function () {

	// select #flowplanes and make it scrollable. use circular and navigator plugins
	$("#gallery").scrollable({ circular: true, mousewheel: true }).navigator({

		// select #sub-nav to be used as navigator
		navi: "#sub-nav",

		// select A tags inside the navigator to work as items (not direct children)
		naviItem: 'a',

		// assign "current" class name for the active A tag inside navigator
		activeClass: 'current',

		// make browser's back button work
		history: true

	});
	
	$("p[rel]").overlay({mask: '#000'});

	
});














