var Hyatt = new Class({
    initialize: function(){
		this.el = $$('.dropDown');
		for(i=0; i < this.el.length; i++) {
			this.el[i].onmouseover = function(){
				this.getChildren()[1].style.display = 'block';
			};
			this.el[i].onmouseout = function(){
				this.getChildren()[1].style.display = 'none';
			};
		}
		
		this.fadephoto = $('fadephoto');
	   	this.fadephoto.setStyle('visibility', 'hidden');
		new Fx.Style(this.fadephoto, 'opacity', {duration: 500}).start(0, 1);
    }
});

window.addEvent('domready', function(){
	new Hyatt();
});
