window.addEvent('domready', function()
{
	ht_about = $('navAboutWrapper').getStyle('height');
	ht_folio = $('navFolioWrapper').getStyle('height');
	durationTime = 500;
	
	rollOver = 'no';
/*
	$('navTeamDrop').setStyle('height','0px');
	$('navTeamDrop').set('tween', {}).tween('height', '0px');
	// alert ('m i in');
*/

	$('navInvestor').addEvents({
		'mouseenter':function() {
			this.setStyle('background-image','url(gfx/investor_portal_on.jpg)');
		},
		'mouseleave':function() {
			this.setStyle('background-image','url(gfx/investor_portal_off.jpg)');
		}
	});


	$('navTeam').addEvents({
		'mouseenter':function() {
			$('navTeam').setStyle('background-image','url(gfx/navTeamBG.gif)');

			// alert ('mouseentered');		
			// $('navTeam').setStyle('background-color','#3aa1c6');
/*			$('navTeamDrop').setStyle('visibility','visible');		
			$('navTeamDrop').set('tween', {
				duration: 1500,
				transition: Fx.Transitions.Quad.easeOut // This could have been also 'bounce:out'
			}).tween('height', ht_team);
*/
		},
		'mouseleave':function() {
			$('navTeam').setStyle('background-image','');

			// alert ('mouseleft');
			// $('navTeam').setStyle('background-color','#000');
			// $('navTeamDrop').setStyle('visibility','visible');
			// $('navTeamDrop').set('tween', {}).tween('height', '0px');
		}
	}); // navTeam
	
	
	$('navAbout').addEvents({
		'mouseenter':function() {
			$('navAbout').setStyle('background-image','url(gfx/navBG.gif)');
			$('navAboutDrop').set('tween', {
				duration: durationTime,
				transition: Fx.Transitions.Quad.easeOut // This could have been also 'bounce:out'
			}).tween('height', ht_about);
		},
		'mouseleave':function() {
			$('navAbout').setStyle('background-image','');
			$('navAboutDrop').set('tween', {}).tween('height', '0px');
		} // mouseleave

	}); // navAbout
	
	$('navAboutDrop').addEvents({
		'mouseenter':function() {
			$('navAbout').setStyle('background-image','url(gfx/navBG.gif)');
			$('navAboutDrop').set('tween', {}).tween('height', ht_about);
		},
		'mouseleave':function() {
			$('navAbout').setStyle('background-image','');
			$('navAboutDrop').set('tween', {}).tween('height', '0px');
		}
	}); // navAboutDrop
	
	
	$('navFolio').addEvents({
		'mouseenter':function() {
			$('navFolio').setStyle('background-image','url(gfx/navBG.gif)');
			$('navFolioDrop').set('tween',{
				duration:durationTime,
				transition: Fx.Transitions.Quad.easeOut // This could have been also 'bounce:out'
			}).tween('height', ht_folio);
		},
		'mouseleave':function() {
			$('navFolio').setStyle('background-image','');
			$('navFolioDrop').set('tween', {}).tween('height', '0px');
		}
	}); // navAbout
	
	$('navFolioDrop').addEvents({
		'mouseenter':function() {
			$('navFolio').setStyle('background-image','url(gfx/navBG.gif)');
			this.set('tween', {}).tween('height', ht_folio);
		},
		'mouseleave':function() {
			$('navFolio').setStyle('background-image','');
			this.set('tween', {}).tween('height', '0px');
		}
	}); // navFolioDrop
	
	
	
	$$('.navChild').addEvents({
		'mouseenter':function() {
			rollOver='no';
			// alert ('all the childs r in home');
			this.setStyle('background-color','#fff');
			this.setStyle('color','#3aa1c6');
			
			
		},
		'mouseleave':function() {
			rollOver='yes';
			this.setStyle('background-color','#d9d9d9');
			this.setStyle('color','#1d1d1d');
		}
		
							  
							  
	}); // navChild
	
	

}); // domready