﻿<!--
$(function()
{
    $(".menu .menu_p1").hover(
        function()
        {
          
			$(this).children('.menu_fd').show();
        },
        function()
        {
            	
			$(this).children('.menu_fd').hide();		
        }
    );
    
});
function jsCopy(e) {
    var text = '' ;
    if(typeof e != 'string') {
        var iptEle = e.parentNode.getElementsByTagName('textarea')[0] ;
        iptEle.select() ;
        text = iptEle.value ;
    }
    else 
        text = e ;
    if(document.attachEvent) {
        window.clipboardData.setData('text',text)
        alert('已复制至剪贴板，用 Ctrl+V 即可粘贴') ;
    }    
}
-->

