/*------------------------------------------------------------------------------------------
level.second.dir.one.js
da peng
dp165137419@163.com
------------------------------------------------------------------------------------------*/



(function ($) {
    $(document).ready(function () {
				$('#hint').show();
				$('#hint').css('left', (window.screen.width - $('#hint').width()) / 2 + $(window).scrollLeft());
				$('#hint').css('top', window.screen.height / 2 - $('#hint').height() + $(window).scrollTop());
				$('#hint').click(function () { $(this).hide(); });
				
				
				
		
				
				
				
				//ajax ----------------------------------------------------------------------------------------------------------------
				
				
				
				//default call --------------------------------------------------------------------------------------------------------
				var gameTypeId = parseInt($('#gameTypeIdr').val());
				LevelHandle1('configs/ajax/level.ajax.php', {'gameTypeId':57});
				//default call end ----------------------------------------------------------------------------------------------------
				
				
				
				//onchange call -------------------------------------------------------------------------------------------------------
				$('#gameTypeIdr').change(function () {
				    LevelHandle1('configs/ajax/level.ajax.php', 
												{'gameTypeId':$(this).val()});
				});
				
				
				
				$('#startLevelr').change(function () {
				    LevelHandle1('configs/ajax/level.ajax.php', 
												{'gameTypeId':$('#gameTypeIdr').val(), 
												'startLevel':$(this).val(), 
												'desiredLevel':$('#desiredLevelr').val()
												});
				});
				
				
				
				$('#desiredLevelr').change(function () {
				    LevelHandle1('configs/ajax/level.ajax.php', 
												{'gameTypeId':$('#gameTypeIdr').val(), 
												'startLevel':$('#startLevelr').val(), 
												'desiredLevel':$(this).val()});
				});
				//onchange call end ---------------------------------------------------------------------------------------------------
				
				
				
				//ajax end ------------------------------------------------------------------------------------------------------------
				
				
				
			
				
				
				$('#hint').hide();
		});
})(jQuery);




