/** * @author mac_hou; * @date 2011,3,20; * @copyright (c) 2011 authors.txt; * @email blacksheep.hou@gmail.com; **/ //begin jquery $(function(){ //append img to li $("#nav-shadow li").append(''); //append hover event $("#nav-shadow li").hover(function(){ //define e for tihs var $e = this; $($e).find("a").stop().animate({margintop:'-14px'},250,function(){ $($e).find("a").animate({margintop:'-10px'},250); }); $($e).find("img.shadow").stop().animate({width:"80%",opacity:"0.3",marginleft:"8px"},250); },function(){ var $e = this; $($e).find("a").stop().animate({margintop:"4px"},250,function(){ $($e).find("a").animate({margintop:"0px"},250); }); $($e).find("img.shadow").stop().animate({width:"100%",opacity:"1",marginleft:"0px"},250); } ) }) //end jquery function opena(){ window.open('http://124.226.192.21:8801/seeyon/index.jsp'); }