/*------------------------------------------------------------------------------------------
level.second.dir.change.currency.js
da peng
dp165137419@163.com
------------------------------------------------------------------------------------------*/



(function ($) {
    $(document).ready(function () {
				
				$('#hint').css('left', (window.screen.width - $('#hint').width()) / 2 + $(window).scrollLeft());
				$('#hint').css('top', window.screen.height / 2 - $('#hint').height() + $(window).scrollTop());
				$('#hint').show();
				
				$('#currencySwap').change(function () {
				    window.location = '?currency=' + $(this).val();
				});
				
				$('#hint').hide();
		});
})(jQuery);



