// Layout related

var opt = {
	debug: false
}

if (opt.debug)
		{ console.log('debug mode is on'); }


// variables
var body_el, jwindow, bg_wrapper, bg;

// DOM ready
$(function(){
	
	if (opt.debug && jQuery)
		{ console.log('jQuery loaded'); }
	
	// select elements
	body_el = $('body');
	jwindow = $(window);
	
});

// functions

