(function($){
    $.fn.extend({
        marketplace: function(options) {
			var defaults = {};
            var options = $.extend(defaults, options);
            return this.each(function(){
                var obj = $(this);
				$('.classifiedsListItem',obj).click(function(){
					$.post('ajax/classified.php',
					{category: jQuery(this).attr('title')},
					function(xml){
						jQuery('#classifiedContent').fadeTo(1000,0,function(){
							var html=jQuery(xml).find('classified').text();
							jQuery('#classifiedContent').html(html);
						}).fadeTo(1000,1);
					},
					'xml');	
					return false;
				});
            });
        }
    });
})(jQuery);