/* hide the secondary links */
var idSubMenuImgs = new Array();
window.addEvent('domready', function() {
	idSubMenuImgs = $('idSubMenu').getElements('img');
	idSubMenuImgs.addEvent('mouseover', function() {
		src = this.getProperty('src');
		if (!this.hasClass('clsLiactive')) { // do below only belwo for a non active link
			name = src.split('.')[0];
			ext = src.split('.')[1];
			this.setProperty('src', name + 'active' + '.' + ext);
		}
	});
	
	idSubMenuImgs.addEvent('mouseout', function() {
		src = this.getProperty('src');
		if (!this.hasClass('clsLiactive')) { // do below only if no active clsLiActive
			name = this.getProperty('src').split('active')[0];
			ext = this.getProperty('src').split('active')[1];
			this.setProperty('src', name + ext);
		}
	});
});

