onDOMLoaded(function() {
	var main = Ext.get('div_main');
	var suppliers = Ext.get('div_suppliers');
	var distributors = Ext.get('div_distributors');
	main.dom.title = 'Click here to learn more about Link2Promo';
	main.on('click', function(){location='about.html';}, this, {preventDefault: true});
	suppliers.dom.title = 'Click here to learn more about how Link2Promo benefits suppliers';
	suppliers.on('click', function(){location='suppliers.html';}, this, {preventDefault: true});
	distributors.dom.title = 'Click here to learn more about how Link2Promo benefits distributors';
	distributors.on('click', function(){location='distributors.html';}, this, {preventDefault: true});
});

