$(document).ready(function(){
$("#subsections_1").hide();
$(".section_1:first").parent('dt').addClass('active');
$("#subsections_1").slideDown('400');
$(".section_1").click(function(){
$(".section_1").each(function()
{
$(this).parents('dt').removeClass('active');
});
$("#subsections_1").hide();
$("#subsections_1").html($("#sub_"+$(this).attr('id')).html());
$(this).parents('dt').addClass('active');
$("#subsections_1").slideDown('400');
return false;
});

$("#subsections_2").hide();
$(".section_2:first").parent('dt').addClass('active');
$("#subsections_2").slideDown('400');
$(".section_2").click(function(){
$(".section_2").each(function()
{
$(this).parent('dt').removeClass('active');
});
$("#subsections_2").hide();
$("#subsections_2").html($("#sub_"+$(this).attr('id')).html());
$(this).parent('dt').addClass('active');
$("#subsections_2").slideDown('400');
return false;
});

$("#subsections_3").hide();
$(".section_3:first").parent('dt').addClass('active');
$("#subsections_3").slideDown('400');
$(".section_3").click(function(){
$(".section_3").each(function()
{
$(this).parent('dt').removeClass('active');
});
$("#subsections_3").hide();
$("#subsections_3").html($("#sub_"+$(this).attr('id')).html());
$(this).parent('dt').addClass('active');
$("#subsections_3").slideDown('400');
return false;
});

$("#choose_region").click(function(){
$("#choosen_region").slideToggle();
return false;
});
$(document).click(function(e){
if (e.target!=$('#choose_region'))
$("#choosen_region").slideUp();
});
});
