﻿$(function () {
	$("#selectcountry").hover(function () {
		$('.dropdown', this).fadeIn(400);
	}, function () {
		$('.dropdown', this).hide();
	});
});
