window.addEvent('domready', function() {	$('nav1').addEvent('mouseover', function(e) {    	e = new Event(e).stop();    	$('menu').setStyle('display', 'block');    	$('nav1').setStyle('height', 100);    });    $('nav1').addEvent('mouseout', function(e) {    	e = new Event(e).stop();    	$('menu').setStyle('display', 'none');    });        $('menu').addEvent('mouseover', function(e) {    	e = new Event(e).stop();    	$('menu').setStyle('display', 'block');    	$('nav1').getFirst().addClass('x');    });    $('menu').addEvent('mouseout', function(e) {    	e = new Event(e).stop();    	$('menu').setStyle('display', 'none');    	$('nav1').getFirst().removeClass('x');    });        // photos to animate        if ($('a5b')) {	    $('a5b').fade('hide');	    (function() {	    	$('a5b').set('tween', { duration: 1000 }).fade('in');	    	(function() { $('a5b').set('tween', { duration: 1000 }).fade('toggle'); }).periodical(9000);	    }).delay(3000);	}    if ($('c3b')) {	    $('c3b').fade('hide');	    (function() {	    	$('c3b').set('tween', { duration: 1000 }).fade('in');	    	(function() { $('c3b').set('tween', { duration: 1000 }).fade('toggle'); }).periodical(9000);	    }).delay(7500);    }       if ($('a2')) {	    $('a2').fade('hide');	    (function() {	    	$('a2').set('tween', { duration: 1000 }).fade('in');	    	(function() { $('a2').set('tween', { duration: 1000 }).fade('toggle'); }).periodical(11000);	    }).delay(1500);	}	if ($('b7')) {	    // $('b7').fade('hide');	    (function() {	    	$('b7').set('tween', { duration: 1000 }).fade('in');	    	(function() { $('b7').set('tween', { duration: 1000 }).fade('toggle'); }).periodical(11000);	    }).delay(6000);	}	if ($('c6')) {	    $('c6').fade('hide');	    (function() {	    	$('c6').set('tween', { duration: 1000 }).fade('in');	    	(function() { $('c6').set('tween', { duration: 1000 }).fade('toggle'); }).periodical(11000);	    }).delay(4500);	}        // color squares...        $('a1').fade('hide');    (function() {    	(function() { squareAnim($('a1')); }).periodical(4000);    }).delay(6600);         $('a4').fade('hide');    (function() {    	(function() { squareAnim($('a4')); }).periodical(4000);    }).delay(8800);         $('a7').fade('hide');    (function() {    	(function() { squareAnim($('a7')); }).periodical(4000);    }).delay(0);        $('c4').fade('hide');    (function() {    	(function() { squareAnim($('c4')); }).periodical(4000);    }).delay(2200);        $('c7').fade('hide');    (function() {    	(function() { squareAnim($('c7')); }).periodical(4000);    }).delay(4400);        });function squareAnim(x) {	if (x.getStyle('opacity') > 0) {     	x.get('tween', { property: 'opacity', duration: 1000 }).start(0);    }    else {    	x.get('tween', { property: 'opacity', duration: 1000 }).start(0.3);    }}