function __link( _href ) {
	window.location = _href;
	}

function __bul_out() {
	document.getElementById( 'bullet' ).style.visibility = 'hidden';
	}

function __bul_over( _this ) {
	var _bullet = document.getElementById( 'bullet' );
	_this.parentNode.appendChild( _bullet );
	_bullet.style.visibility = 'visible';
	}

function __exp_out( _this ) {
	_this.style.backgroundImage = 'url( images/pixel.gif )';
	}

function __exp_over( _this ) {
	_this.style.backgroundImage = 'url( images/experiences_nav_hover.gif )';
	}

function __home_init() {
	var _paging = document.getElementById( 'paging' ),
		_results = document.getElementById( 'results' ),
		_sub_height;

	_paging.style.height = _results.style.height = '100%';

	if ( _results.clientHeight >= 578 ) {
		_sub_height = _results.clientHeight - 32;
		}
	else {
		_results.style.height = 539 + ( 50 - _paging.clientHeight ) + 'px';
		_sub_height = 568;
		}

	document.getElementById( 'sub-cuisine' ).style.height = document.getElementById( 'sub-neighborhood' ).style.height = document.getElementById( 'sub-price' ).style.height = ( _sub_height + 'px' );
	}

function __nav_out( _this ) {
	if ( ! document.getElementById( 'sub-' + _this.id ) ) {
		if ( _this.id != 'initial' ) {
			_this.src = _this.src.replace( /_hover/, '' );
			}
		}
	}

function __nav_over( _this ) {
	var _sub, _thing;
	if ( window._cur_nav ) {
		window._cur_nav.src = window._cur_nav.src.replace( /_hover/, '' );
		window._cur_nav = false;
		if ( window._cur_sub ) {
			window._cur_sub.style.display = 'none';
			document.getElementById( 'thing' ).style.visibility = 'hidden';
			}
		}
	if ( _this.id != 'initial' ) {
		_this.src = _this.src.replace( /\.gif/, '_hover.gif' );
		}
	if ( _sub = document.getElementById( 'sub-' + _this.parentNode.id ) ) {
		window._cur_nav = _this;
		window._cur_sub = _sub;
		_sub.style.display = 'block';
		_thing = document.getElementById( 'thing' );
		_this.parentNode.parentNode.appendChild( _thing );
		_thing.style.visibility = 'visible';
		}
	}

function __tem_out() {
	if ( window._cur_bul ) {
		window._cur_bul.parentNode.style.backgroundImage = 'url( images/template_bullet.gif )';
		}
	}

function __tem_over( _this ) {
	__tem_out();
	window._cur_bul = _this;
	_this.parentNode.style.backgroundImage = 'url( images/template_bullet_hover.gif )';
	}
