$(document).ready(function(){ 
	
	$(document).pngFix(); 
}); 


function showDepartmentsOf(uuid) {
	
	$.getJSON("/inc/ajax.departments.php?uuid="+uuid,function(json) { 
		
		
		$('#department-box-content').empty();
		$('#department-box-content').append(json.html);
		$('#department-box').stop().fadeIn();
		
		initCountrySelect();
		
		
		$('#close-department-box').click(function(){
			$('#department-box').stop().fadeOut();
			return false;
		});		
		
		$('#show-depot-list').click(function(){
			$('#depot-list-holder').show(); 
			$('#depots-link').hide();
			return false;
		});
		
	});
	
	return false;
	
}

function initCountrySelect() {
	$('#portal_country').bind('change', function() {
		var uuidCountry = $(this).val();
		var country     = $('#portal_country :selected' ).text();
		var uuid = $('#continent_uuid').text();
		$.getJSON("/inc/ajax.departments.php?c_uuid="+uuidCountry+"&country="+country+"&uuid="+uuid,function(json) {
			$('#department-box-content').empty();
			$('#department-box-content').append(json.html);
			//$('#department-box').stop().fadeIn();
			initCountrySelect();
			
			$('#show-depot-list').click(function(){
				$('#depot-list-holder').show(); 
				$('#depots-link').hide();
				return false;
			});
		});
	});
}
