var init=function()
{dojo.query('.listing-nav a').onclick(listing_nav);dojo.require("dojox.widget.Rotator");dojo.require("dojox.widget.AutoRotator");dojo.require("dojox.widget.rotator.Slide");dojo.require("dojox.widget.rotator.Controller");}
var listing_nav=function(event)
{event.preventDefault();dojo.query('.listing-items').removeClass("active");dojo.query('.listing-nav a').removeClass("active");var showWhat=this.hash.substr(1);if(showWhat=="all"){dojo.query('.listing-items').addClass("active");dojo.addClass(this,"active");}else{if(dojo.hasClass(showWhat,"active")){dojo.removeClass(showWhat,"active");dojo.removeClass(this,"active");}else{dojo.addClass(showWhat,"active");dojo.addClass(this,"active");}}}
dojo.addOnLoad(init);
