window.addEvent('domready', function() {
			
	// EXTERNAL LINKS			
	$(document.body).getElements('a[rel=external]').set('target', '_blank');	
		 
	// 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'));
	
});

