/*------------------------------------------------------------------------------------------
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($('#gameTypeIdp').val());
				LevelHandle('configs/ajax/level.ajax.php', {'gameTypeId':2});
				//default call end ----------------------------------------------------------------------------------------------------
				
				
				
				//onchange call -------------------------------------------------------------------------------------------------------
				$('#gameTypeIdp').change(function () {
				    LevelHandle('configs/ajax/level.ajax.php', 
												{'gameTypeId':$(this).val()});
				});
				
				
				
				$('#startLevelp').change(function () {
				    LevelHandle('configs/ajax/level.ajax.php', 
												{'gameTypeId':$('#gameTypeIdp').val(), 
												'startLevel':$(this).val(), 
												'desiredLevel':$('#desiredLevelp').val()
												});
				});
				
				
				
				$('#desiredLevelp').change(function () {
				    LevelHandle('configs/ajax/level.ajax.php', 
												{'gameTypeId':$('#gameTypeIdp').val(), 
												'startLevel':$('#startLevelp').val(), 
												'desiredLevel':$(this).val()});
				});
				//onchange call end ---------------------------------------------------------------------------------------------------
				
				
				
				//ajax end ------------------------------------------------------------------------------------------------------------
				
				
				
			
				
				
				$('#hint').hide();
		});
})(jQuery);




