//±âº» À̺¥Æ®µé µî·Ï jQuery(document).ready( function(){ //ÇÁ¸°Æ® ¹öÆ° Ŭ¸¯½Ã »õâ ¶ç¿ì±â µî·Ï jQuery('#print').on( 'click', function( event ) { window.open(window.location + '?print=y'); }); //ÇÁ¸°Æ®¹öÆ° hover½Ã Æ÷ÀÎƮĿ¼­ µî·Ï jQuery('#print').hover( function () { jQuery(this).css('cursor', 'pointer'); }, function () { jQuery(this).css('cursor', 'default'); } ); // url¿¡ ÇÁ¸°Æ®ÄÚµå ÀÖÀ»¶§ ÇÁ¸°Æ® if (location.search.indexOf('print=y') != -1) { jQuery('#head').hide(); jQuery('#visual').hide(); jQuery('#buttons').hide(); jQuery('#foot').hide(); jQuery('html').scrollTop(0); window.print(); } pcate = jQuery('.pcate2').text(); l1 = cate2idx(pcate.substr(1,1)); catestr = pcate.substr(0,4); for (var l2 = 0; l2 < arrCate[l1].length; l2++) { if (arrCate[l1][l2][0][0] == catestr) { break; } } l3 = eval(pcate.substr(5,2)); str_pcate = '
'; str_pcate = str_pcate + ' > '; str_pcate = str_pcate + ' Á¦Ç°¼Ò°³ > '; str_pcate = str_pcate + ' ' + arrCate[l1][l2][0][1] + ' > '; str_pcate = str_pcate + ' ' + arrCate[l1][l2][l3] + ''; str_pcate = str_pcate + '
'; jQuery('.pcate2').replaceWith(str_pcate); } );