function dom_init() {

	// Options for SuperBGImage
	$.fn.superbgimage.options = {
		transition: 0,
		randomtransition: 0, // 0-none, 1-use random transition (0-7)
		slideshow: 0, // 0-none, 1-autostart slideshow
		slide_interval: 4000, // interval for the slideshow
		randomimage: 0, // 0-none, 1-random image
		speed: 'fast' // animation speed
	};

	// initialize SuperBGImage
	$('#gallery').superbgimage().hide();
	
	// prev slide
	$('a.prev').click(function() {
		return $('#gallery').prevSlide();
	});

	// next slide
	$('a.next').click(function() {
		return $('#gallery').nextSlide();
	});
	
	
	$(".toggle").click(function () {
		$(".inner").toggleClass("active");
		$(this).toggleClass("button-active");
		return false;
	});

  
}
