//--------------------------------------------------------------
// FUNCTIONS
//--------------------------------------------------------------

//--------------------------------------------------------------
// END FUNCTIONS
//--------------------------------------------------------------
$(document).ready(function(){
	
	// Initially add a class to the body to hide it, then remove that class once the page has loaded
	// This is for FF only as that has a FOUT issue with font-face.
	
	/*
	if($.browser.mozilla){
		$("body").addClass("ffloading");
		$(window).load(function() {
			$("body").removeClass("ffloading");
		});
	};
	*/
});
