window.addEvent('domready', function() {
    $$('.top_menu').each(function(el){
        
		el.addEvent('mouseenter',function(e){
           el.addClass('top_menu_on');
        });
        el.addEvent('mouseleave',function(e){
		   el.removeClass('top_menu_on');
           el.addClass('top_menu');
        });
    });
	
	
	
	
	if($('right').getSize().y>$('left').getSize().y){
		$('left').style.height = $('right').getSize().y+'px';
		//alert('left'+$('left').getSize().y);
	} else {
		$('right').style.height = $('left').getSize().y+'px';
		//alert('right'+$('right').getSize().y);
	}
	
	
	ReMooz.assign('a.re', {
		'origin': 'img',
		'resizeFactor': 0.8, // resize to maximum 80% of screen size
		'cutOut': false, // don't hide the original
		'margin': 20,
		'opacityResize': 0.5, // opaque resize
		'dragging': false, // disable dragging
		'centered': true // resize to center of the screen, not relative to the source element
	});

	
	
	
	
	
});