window.onload = function(){

	var qld_stores = new Fx.Slide('qld_stores').hide();
	$('qld').addEvent('click', function(e){
		e.stop();
		qld_stores.slideIn();
		vic_stores.slideOut();
		wa_stores.slideOut();
		nsw_stores.slideOut();
		sa_stores.slideOut();
		nt_stores.slideOut();
	});

	var vic_stores = new Fx.Slide('vic_stores').hide();
	$('vic').addEvent('click', function(e){
		e.stop();
		qld_stores.slideOut();
		vic_stores.slideIn();
		wa_stores.slideOut();
		nsw_stores.slideOut();
		sa_stores.slideOut();
		nt_stores.slideOut();
	});
	
	var wa_stores = new Fx.Slide('wa_stores').hide();
	$('wa').addEvent('click', function(e){
		e.stop();
		qld_stores.slideOut();
		vic_stores.slideOut();
		wa_stores.slideIn();
		nsw_stores.slideOut();
		sa_stores.slideOut();
		nt_stores.slideOut();
	});

	var nsw_stores = new Fx.Slide('nsw_stores').hide();
	$('nsw').addEvent('click', function(e){
		e.stop();
		qld_stores.slideOut();
		vic_stores.slideOut();
		wa_stores.slideOut();
		nsw_stores.slideIn();
		sa_stores.slideOut();
		nt_stores.slideOut();
	});

	var sa_stores = new Fx.Slide('sa_stores').hide();
	$('sa').addEvent('click', function(e){
		e.stop();
		qld_stores.slideOut();
		vic_stores.slideOut();
		wa_stores.slideOut();
		nsw_stores.slideOut();
		sa_stores.slideIn();
		nt_stores.slideOut();
	});

	var nt_stores = new Fx.Slide('nt_stores').hide();
	$('nt').addEvent('click', function(e){
		e.stop();
		qld_stores.slideOut();
		vic_stores.slideOut();
		wa_stores.slideOut();
		nsw_stores.slideOut();
		sa_stores.slideOut();
		nt_stores.slideIn();
	});
	
}
