window.addEvent('domready', function() {
	var status = {
		'true': 'more...',
		'false': 'reset...'
	};
	
/*	$('myOtherElement').addEvents({
		'mouseenter': function(){
			
			
			//alert('i m here');
			// Always sets the duration of the tween to 1000 ms and a bouncing transition
			// And then tweens the height of the element
			this.set('tween', {
				duration: 1000,
				transition: Fx.Transitions.Bounce.easeOut // This could have been also 'bounce:out'
			}).tween('height', '150px');
			$('forex_more').style.display = 'none';
			
		},
		'mouseleave': function(){
			//alert('i m out');
			// Resets the tween and changes the element back to its original size
			
			this.set('tween', {}).tween('height', '20px');
			$('forex_more').style.display = ''
		}
	});
	
	$('stockMarketDiv').addEvents({
		'mouseenter': function(){
			
			//alert('i m here');
			// Always sets the duration of the tween to 1000 ms and a bouncing transition
			// And then tweens the height of the element
			this.set('tween', {
				duration: 1000,
				transition: Fx.Transitions.Bounce.easeOut // This could have been also 'bounce:out'
			}).tween('height', '120px');
			$('more_status').style.display = 'none';
		},
		'mouseleave': function(){
			//alert('i m out');
			// Resets the tween and changes the element back to its original size
			this.set('tween', {}).tween('height', '20px');
			$('more_status').style.display = '';
		}
	});
*/		$('useFullDiv').addEvents({
			'mouseenter': function(){
				this.set('tween', {
				duration: 1000,
				transition: Fx.Transitions.Bounce.easeOut // This could have been also 'bounce:out'
			}).tween('height', '260px');
			$('useFull_status').style.display = 'none';
		},
		'mouseleave': function(){
			this.set('tween', {}).tween('height', '15px');
			$('useFull_status').style.display = '';
		}
	});

	

});