jQuery.noConflict();
/*
 * Subject : Banner JSONP Control
 * Author  : javakiller(Lee, hyo-min)
 * Date    : 2009-02-11
 * */

var arrBannerDivList;
var secIdGroup;
var _currentUrl = window.location.href;

jQuery(document).ready(function(){

	/* BANNER_DIV_ArrayList From Client */
	arrBannerDivList = jQuery("div[id^='GK_BN_']");

	if(arrBannerDivList.length > 0) {
		
		secIdGroup = '';
		jQuery(arrBannerDivList).each(function(){
			secIdGroup += jQuery.trim(jQuery(this).attr('id').split('_')[2])+'|';
		});

		jQuery.getJSON("http://bannersys.gamekiss.com/getBanner.jce?siteCode=92&secIdGroup="+secIdGroup+"&callback=?");
	}
}); 