var Site = {
	init: function(){
		/*
		if($('search')){
			$('search').addEvent('submit', function(e){
				ev = new Event(e);
				ev.stop();
				d  = this.action;
				d += encodeURIComponent(this.query.value);
				
				d  = 'http://' + location.host + '/show/me/';
				d += encodeURIComponent( $('query').value );
				
				console.log( d );
				//document.location.href = d;
				//location.href= 'http://' + location.host + '/show/me/' + encodeURIComponent( $('query').value() ); 
			});
		}
		*/
	}
};
window.addEvent('domready', Site.init);

