		function loadContent(catid) {
		$('#contentArea').slideToggle('slow', function() {
				// Animation complete.
			  });
		$("#contentArea").load("index.php?option=com_sobi2&sobi2Task=catmaps&catid="+catid+"&Itemid=63");
		}
		
		$(document).ready(function() {
		var catid = $("#catmap").attr("class");
		$("#catmap").html('<p align="center" style="height:100px; padding-top:15px;"><img src="http://www.sastay.co.za/templates/sastay/images/loading-small.gif" width="32" height="32" /></p>');
		$("#catmap").load("index.php?option=com_sobi2&sobi2Task=catmaps&catid="+catid+"&Itemid=63");
		});
		
		$(document).ready(function() {
		var catid = $("#subcatmap").attr("class");
		$("#subcatmap").html('<p align="center" style="height:100px; padding-top:15px;"><img src="http://www.sastay.co.za/templates/sastay/images/loading-small.gif" width="32" height="32" /></p>');
		$("#subcatmap").load("index.php?option=com_sobi2&sobi2Task=catmaps&catid="+catid+"&Itemid=63");
		});
		
// Comparison.		
		$(document).ready(function()
		{
			$("#submit_prog").click(
					function()
					{
						var query_string = '';
						
						$("input[@type='checkbox'][@name='compare']").each(
							function()
							{
								if(this.checked)
								{
									query_string += "&sobi2id[]=" + this.value;
								}
							});
                            if (!query_string){
								alert ("Please select at least one establishment");
					            return false;
								}else{
						$.ajax(
							{
		   						type: "POST",
							   	url: "index.php?option=com_sobi2&sobi2Task=comparesystem&Itemid=63",
							   	data: "sobi2id=" + query_string,
							   	success: 
								    function(t) 
						          	{
						           		$("div.sobi2").empty().append(t);
						       	   	},
							   	error:
								   	function()
								   	{
								    	$("div.sobi2").append("An error occured during processing");
								   	}
							 }); }	
					});
		});
// picturs.
function loadPictures(id) {
		$('#vcard_enquiry_rates'+id).slideToggle('slow', function() {
				// Animation complete.
			  });
		$("."+id).load("index.php?option=com_sobi2&sobi2Task=pic&sobi2Id="+id+"&Itemid=63");
		}
$(document).ready(function()
		{
$(".show-more-towns").click(function () {
$(".empty-town").toggle();
 $(".show-more-towns").html("");
});
});
		
