﻿$(document).ready(function () {

    $('.countryList').hide(); // Hide even though it's already hidden

    $('.currentCountry').click(function () {

        $('.countryList').slideToggle(300); // First click should toggle to 'show'

        return false;
    });

    $('.companyList').hide(); // Hide even though it's already hidden

    $('.currentCompany').click(function () {

        $('.companyList').slideToggle(300); // First click should toggle to 'show'

        return false;
    });
	/*
	sloopt checkboxes
	
	
    $('html').click(function () {
    	$('.countryList').hide();
        $('.companyList').hide();

        return false;
    });
    
    */
});
