/**
 * Global Lice Blaster Setup
 * 
 * Creates all basic functionality for the entire website.
 * Built in an [LICEBLASTER] object so as not to clutter up the global
 * variable space.
 *
 */


var LICEBLASTER = {};


// Constants ________________________________________________________________


// Variables ________________________________________________________________



// Methods __________________________________________________________________

/* [init]
 * Runs all the setup methods
 */
LICEBLASTER.init = function() {
	
	/* Browser check
	 */
	var script = $(document.createElement('script'));
	script.attr('src', 'http://browser-update.org/update.js');
	$('body').append(script);
	
}


// Begin ____________________________________________________________________
$(document).ready(function() {
	LICEBLASTER.init();
});
