window.addEvent('domready', function() {
			
	// EXTERNAL LINKS			
	$(document.body).getElements('a[rel=external]').set('target', '_blank');	
				
	// DROP DOWN MENU
	var myMenu = new MenuMatic();
		 
	// BACKGROUND IMAGE CACHE
	try {
		document.execCommand("BackgroundImageCache", false, true);
	} catch(err) {}
	
	// SMOOTH SCROLL PAGE
 	new SmoothScroll({ duration:700 }, window);
	
	// TOOL TIPS														 
	var tooltip = new Tips($$('.tooltip'));

	// GENERIC ACCORDION
	var accordion = new Accordion($$('.toggler'),$$('.element'), {
		opacity: 0,
		alwaysHide: true,
		start:'all-closed',
		onActive: function(toggler) { toggler.setStyle('background-position', '10px -21px'); },
		onBackground: function(toggler) { toggler.setStyle('background-position', '10px 0'); }
	});

	
});

