jQuery.noConflict();

var plauditSite = (function($){
	
	var uiElements = {
		
		init: function() {
			this.utilMethods();
			this.customElements.init();
		},
		
		utilMethods: function() {
			$("body").addClass("jsEnabled"); // We use this to style non-js
		},
		
		customElements: {
			
			init: function() {
				this.mainNavHover();
			},
			
			mainNavHover: function() {
				$("#mainMenu > li").hover(
					function(){
						$(this).addClass("hover");
					}, function(){
						$(this).removeClass("hover");
					}
				);
		
			}
		}
		
	};
	
	return {
		setup: uiElements.init()
	}
})(jQuery);

jQuery(function(){ plauditSite.setup; });
