// Fire up the JS
var base = function($){	
	// Document Ready
	$(function(){	
		$(".no-script").hide();		
		$('.accordion').liteAccordion({
			containerHeight: 340,
			containerWidth: 850,
			headerWidth: 36,
			slideSpeed: 300,
			firstSlide: 5
		});
	});	
	
	// Some public functions that are used site wide.
	return {}
}(jQuery);
