/****************************************************
 * Copyright © Legwork Studio. All Rights Reserved. *
 * Updated by: Matt Wiggins, 06-Jun-2011            *
 *                                                  *
 * Let's get this party started.                    *
 ****************************************************
/                                                  */

var Usnco = Usnco || {};

(function(Usnco) {
	if(navigator.userAgent.match(/iPhone/i) || navigator.userAgent.match(/iPod/i) || navigator.userAgent.match(/iPad/i)) {
		document.getElementsByTagName('html')[0].className += " ios";
	}
	
	// Queue up stuff throughout the body that needs
	// to happen after DOM Ready.
	var queue = [];
	
	Usnco.queue = function() {
		for (var i = -1, func; func = arguments[++i];) {
			queue[queue.length] = func;
		}
	};
	
	Usnco.unqueue = function() {
		var func;
		while (func = queue.shift()) {
			func();
		}
	};
}(Usnco));
