﻿$(document).ready(function () {
	
    $('#countrySelect ul li').mouseover(function () {
		
		var currentCountry = this.className;
		
        $('#countries .' + currentCountry).toggle(0); // First click should toggle to 'show'

        return false;
    });
	
    $('#countrySelect ul li').mouseout(function () {
		
		var currentCountry = this.className;
		
        $('#countries .' + currentCountry).hide(0); // First click should toggle to 'show'

        return false;
    });
	
});
