$(document).ready(function(){
	/*$('div#main div#body div.country').hover(function(){
		if(!$(this).hasClass('open'))
		{
			$('div#main div#body img#' + this.id + 'flagpole').slideDown(); 
			$('div#main div#body img#' + this.id + 'flag').animate({ top: '-=20'});
			$(this).addClass('open');
		}
	}
	,
	function(){
		if($(this).hasClass('open'))
		{
			$('div#main div#body img#' + this.id + 'flagpole').slideUp();
			$('div#main div#body img#' + this.id + 'flag').animate({ top: '+=20'});
			$(this).removeClass('open');
		}
	});*/
						   
});
