
$(document).ready(function(){
		
	$(function(){
		$('div#international_menu').toggle(function(){
			$('#div_international').animate({ 'top' : '0px' },700);
		}, function(){
			$('#div_international').animate({ 'top' : '-120px' },700);
		});
	});

	$(function(){
		$('#leave_comment div').toggle(function(){
			var comments_to_show = $(this).attr('id');
			//alert(comments_to_show);
			$('#view_comments_'+comments_to_show).show();
		}, function(){
			var comments_to_show = $(this).attr('id');
			//alert(comments_to_show);
			$('#view_comments_'+comments_to_show).hide();
		});
	});
	
});