function show_openup_pic(country, num, main) {
	var obj = document.getElementById("setpic");
	var cursrc;
	if (main==1){cursrc= '/i/' + country +'/pic/'+ country + num + '.jpg';}
	else{cursrc= '/i/' + country +'/pic/'+ country + num + '.jpg';}
	obj.src = cursrc;
}

$(function() { 
    $("ul#top li").mouseover(function(){  
	         $(this).stop().animate({height:'92px'},{queue:false, duration:600, easing: 'easeOutBounce'})}).mouseout(function(){
	         $(this).stop().animate({height:'10px'},{queue:false, duration:600, easing: 'easeOutBounce'})  
	     }); 
});

