<!--
/*
|------------------------------------------------------------------------------
| Ajax Loading
|------------------------------------------------------------------------------
|
| History: (2010.12.1.) 작성 - DK
|
|------------------------------------------------------------------------------
*/
$(document).ready(function() {
	$('.ajaxLoading')
	.ajaxStart(function() { $(this).stop().fadeIn(); })
	.ajaxStop(function() { $(this).fadeOut(); });
});

//-->
