var Featured = new Singleton(function($) {
    var base = this;

    this.dependencies = {
        javascripts: {
            'ListingViewer': '/javascripts/listing_viewer.js'
        }
    };

    this.methods({
        ready: function() {
            $('#featured-category').delegate('.search_result a.view_listing_details', 'click', function() {
                ListingViewer.requestListing(this.href);
                return false;
            });
            
            $('#featured-category .photo img').bind('error', function() {	
                $(this).attr('src', '/images/listings/nopic.png');
			});
        }
    });
});
