/**
 * Global Brehm Site JS config.
 * 
 * All variable settings for the site should go here
 * and should be editted here. If you want to change
 * a setting on the site do it here! If you don't
 * know what you are doing then do not make any
 * changes.
 * 
 * Any needed variables can go in here but in the 
 * interest of keeping everything nice and tidy 
 * try to add any needed vars to the Config global
 * object.
 * 
 * Please document all variables and settings added
 * here for future reference.
 * 
 * @author Michael Gilley <michael@180bydesign.com>
 * @copyright 2010 Brehm Center <brehmcenter.com>
 * @legal All Rights Reserved
 */

var Config = window.Config = {
	
	// Principle effects easing
	easing: 'easeInOutExpo',
	easingIn: 'easeInExpo',
	easingOut: 'easeOutExpo',
	
	pageScrollSpeed: 750,
	
	// Mega Menus
	megaMenus: {
		enabled: true,
		disableClick: true,
		headerId: 'brehm_header',
		menuId: 'drops',
		menuConfig: {
			sensitivity: 7,
			interval: 20,
			timeout: 500
		},
		menuBarHeight: 58,
		fastTransition: 100,
		slowTransition: 450,
		slideTransition: 150
	},
	
	// dynamic searching
	noResultsText: 'Sorry, your search turned out no results.'
};

