$jQuery(document).ready(function() {
    $jQuery('ul.countrySelect').each(function () {
        $jQuery(this).parent().eq(0).hover(
    		function () { $jQuery('.langdrop:eq(0)', this).show(); $jQuery('div#countrySelect').addClass('hover'); },
    		function () { $jQuery('.langdrop:eq(0)', this).hide(); $jQuery('div#countrySelect').removeClass('hover'); }
	    );
	});
});
