	$(function(){  //flag
		var total = $('.flag_content').size();
		var original_heigh = parseInt($('#flag_toggle').css('height'));
		var new_height = (total*original_heigh)+'px';
		$('#flag_toggle').hover(function(){
			//$(this).animate({ height: new_height }, 500 );
			//$(this).stop().animate({ height: new_height },{queue:false,duration:500} );
			$(this).stop().animate({ height: new_height },{queue:false,duration:500} );
		},function(){
			$(this).stop().animate({ height: original_heigh },{queue:false,duration:500});
		});
	});
	

