$(document).ready(create_current_box);
$(window).resize(function(){
	if( $('#TB_overlay').size() > 0 ){
		$('#TB_overlay').css({'height': $(window).height(),'width': $(window).width()});
		$('#TB_current').css({'left': ($(window).width() / 2 ) -  200})
	}
});
function create_current_box(){
	var area_option = '<option value="1">Taiwan</option>';
	if( typeof(area) == 'object' ){
		area_option = '';
		$.each(area,function(value,text){
			area_option +='<option value="'+value+'">'+text+'</option>';
		})
	}
	var TB_current = '<div id="TB_overlay"></div><div id="TB_current"><div><form action="" method="post">'+
		'<h5>Please choose your area</h5>'+
		'<select enabled="No" size="10" style="width:380px" id="custom_currency" name="custom_currency">'+ area_option + '</select><br/><br/>'+
		'<input type="submit" value="Send" /></form></div></div>';
	$('body').append(TB_current);
	$('#TB_overlay').css({
		'height': $(window).height(),
		'left':'0',
		'position':'absolute',
		'top':'0',
		'width':'100%',
		'z-index':'100',
		'background':'#000',
		'opacity':'0.5',
		'filtes.alpha.opacity':'50'
	});
	$('#TB_current').css({
		'background-color':'#fff',
		'display':'block',
		'position':'absolute',
		'height':'400px',
		'width':'400px',
		'z-index':'1000',
		'top':'100px',
		'left': ($(window).width() / 2 ) -  200,
		'text-align':'center'
	}).find("h5").css({
		'background-color':'#eee',
		'padding':'10px',
		'margin':'0px'
	})
}
