$(document).ready(function(){

	$("#comment_form_button").click(function(event){
		event.preventDefault();
		showHide($("#comment_form"));
	});

	$('#countriesListLink').mouseenter(function() {
		// alert("!!");
		$('#countriesList').removeClass("hidden");
	});
	
	$('#countriesListLink').mouseleave(function() {
		  $('#countriesList').addClass("hidden");
	});	
	
	// $("#comment_form").addClass("hidden")

});
