window.onload  = function() {
	var findMyBoroughSlide = new Fx.Slide('find_myborough_slide');
	findMyBoroughSlide.hide();
}
window.addEvent('domready', function() {
	var status = {
		'true': 'open',
		'false': 'close'
	};
	
	//-vertical

	var findMyBoroughSlide = new Fx.Slide('find_myborough_slide');
	//document.getElementById('find_myborough_slide').style.visibility = "hidden";
	//document.getElementById('find_myborough_slide').style.display = "block";
	findMyBoroughSlide.hide();
	document.getElementById('find_myborough_slide').style.visibility = "visible";
	
	var myBoroughSlide = new Fx.Slide('myborough_slide');

	$('myborough_slidein').addEvent('click', function(e){
		e.stop();
		findMyBoroughSlide.slideIn();
		myBoroughSlide.slideOut();
	});

});
