
window.addEvent('domready', function() {
	var el = $('myElement');

	var firstEl = $('MenuLSB');
	var secondEl = $('MenuGES');
	var thirdEl = $('MenuINT');
	
	var morph = new Fx.Morph('Element');


	$('CSSmorphEffectLSB').addEvent('mouseover', function(e) {
		e.stop();
		firstEl.morph('.firstStateLSB');
		secondEl.morph('.firstStateGES');
		thirdEl.morph('.firstStateINT');
	});
	$('CSSmorphEffectLSB').addEvent('mouseout', function(e) {
		e.stop();
		firstEl.morph('.commonStateLSB');
		secondEl.morph('.commonStateGES');
		thirdEl.morph('.commonStateINT');
	});
		


	$('CSSmorphEffectGES').addEvent('mouseover', function(e) {
		e.stop();
		firstEl.morph('.secondStateLSB');
		secondEl.morph('.secondStateGES');
		thirdEl.morph('.firstStateINT');
	});
	$('CSSmorphEffectGES').addEvent('mouseout', function(e) {
		e.stop();
		firstEl.morph('.commonStateLSB');
		secondEl.morph('.commonStateGES');
		thirdEl.morph('.commonStateINT');
	});



	$('CSSmorphEffectINT').addEvent('mouseover', function(e) {
		e.stop();
		firstEl.morph('.secondStateLSB');
		secondEl.morph('.thirdStateGES');
		thirdEl.morph('.thirdStateINT');
	});
	$('CSSmorphEffectINT').addEvent('mouseout', function(e) {
		e.stop();
		firstEl.morph('.commonStateLSB');
		secondEl.morph('.commonStateGES');
		thirdEl.morph('.commonStateINT');
	});

});

/*

window.addEvent('domready', function() {
	var el = $('myElement');

	var anotherEl = $('MenuGES');
	
	var morph = new Fx.Morph('anotherElement');
		
	$('CSSmorphEffectGES').addEvent('mouseover', function(e) {
		e.stop();
		anotherEl.morph('.mainProgrammClass');
	});
		
	$('CSSmorphEffectGES').addEvent('mouseout', function(e) {
		e.stop();
		anotherEl.morph('.LayoutGES');
	});
		
});

window.addEvent('domready', function() {
	var el = $('myElement');

	var anotherEl = $('MenuINT');
	
	var morph = new Fx.Morph('anotherElement');
		
	$('CSSmorphEffectINT').addEvent('mouseover', function(e) {
		e.stop();
		anotherEl.morph('.mainProgrammClass');
	});
		
	$('CSSmorphEffectINT').addEvent('mouseout', function(e) {
		e.stop();
		anotherEl.morph('.LayoutINT');
	});
		
});
*/
