if(!jsFrontend) { var jsFrontend = new Object(); }

jsFrontend = {
	// datamembers
	debug: false,
	// init, something like a constructor
	init: function() {
		Cufon.replace('h2');
		Cufon.replace('h3');
	
		if($('#gallery').length > 0) {
			Shadowbox.init({ slideshowDelay: 3 });
		}
		
	},
	// end
	_eoo: true
}	

$(document).ready(function() { jsFrontend.init(); });
