

$(document).ready(
	function() 
	{
		var $vendors = $('a.vendor');

		$vendors.click(function()
	   	{
			var $currentVendor = $(this);

	   		$vendors.attr({ style: "color: #9C7643;" });
			$currentVendor.attr({ style: "color: #033568;" });

	   		jQuery.ajax(
	   		{
	   			type: "GET",
	   			url: $currentVendor.attr('href'),
	   			dataType: "html",
	   			timeout: 15000,
	   			error: function() {},
	   			success: function(r) {$("#vendor_content").html(r); }
	   		});

	   		return false;
	   	});
	}
);

/*


$(document).ready(
	function() 
	{
		$('a.vendor').click(function()
	   	{
	   		$('a.vendor').attr({ style: "color: #9C7643;" });
			$(this).attr({ style: "color: #033568;" });
			
	   		$("#vendor_content").fadeOut(500, function() {
		   		jQuery.ajax(
		   		{
		   			type: "GET",
		   			url: $(this).attr('href'),
		   			dataType: "html",
		   			timeout: 15000,
		   			error: function() {},
		   			success: function(r) {$("#vendor_content").html(r); },
		   			complete: function() {$("#vendor_content").fadeIn(3000); }
		   		}); }
	   		);
	   		return false;
	   	});
	}
);
*/
