// png 파일 투명 처리 
function setPng24(obj) {
    obj.width=obj.height=1;
    obj.className=obj.className.replace(/\bpng24\b/i,'');
    obj.style.filter = "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='"+ obj.src +"',sizingMethod='image');"
    obj.src='';
    return '';
}

//플래시 로딩
jQuery(document).ready(function() {
	var obj = document.getElementById('onFlash');
	if(obj) {
		
		obj.style.display = "block";
	}
});

jQuery(document).ready(function() {
	var weatherObj = document.getElementById('onFlash_01');
	if(weatherObj) {
		weatherObj.style.display = "block";
	}
});
