/* ¸µÅ©Å׵θ® »èÁ¦ */ function bluring(){ if(event.srcElement.tagName=="A"||event.srcElement.tagName=="IMG") document.body.focus(); } document.onfocusin=bluring; /* Åõ¸íÀ̹ÌÁö */ 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 ''; } /* ¼­ºê¸Þ´º »ó´Ü µå¶ø´Ù¿î */ // Executes the function when DOM will be loaded fully $(document).ready(function () { // hover property will help us set the events for mouse enter and mouse leave $('.navigation li').hover( // When mouse enters the .navigation element function () { //Fade in the navigation submenu $('ul', this).fadeIn(); // fadeIn will show the sub cat menu }, // When mouse leaves the .navigation element function () { //Fade out the navigation submenu $('ul', this).fadeOut(); // fadeOut will hide the sub cat menu } ); }); function bookmark(){ window.external.AddFavorite('http://www.menmi.co.kr', '¸®µå¹ÌÇǺΰú') }