/* hide the secondary links */

window.addEvent('domready', function() {
	
	var idSubMenuImgs = $('idSubMenu').getElements('img');
	idSubMenuImgs.setStyle('opacity', 0);
});
window.addEvent('load', function() {
	var idSubMenuImgs = $('idSubMenu').getElements('img');
	// fade them in
	var myFx = new Fx.Tween(idSubMenuImgs.pop(),{duration: 750});
	myFx.start('opacity', 1).chain(function() {
		var myFx = new Fx.Tween(idSubMenuImgs.pop(),{duration: 750});
		myFx.start('opacity', 1).chain(function() {
			var myFx = new Fx.Tween(idSubMenuImgs.pop(),{duration: 750});
			myFx.start('opacity', 1).chain(function() {});
		});
	});
});
