$('head').append(''); function windowFade(){ //読み込み時にフェードイン $('#main').fadeIn(300); //aタグクリック時にフェードアウト実行 //$('a').click(function(){ // rel= $(this).attr("rel"); // clickedclass = $(this).attr("class"); // clickedtarget = $(this).attr("target"); // if(rel!="lightbox" && clickedclass!="lb-close" && clickedtarget != "_blank"){ // var url = $(this).attr("href"); // $('#media').animate({"opacity":0},250,function(){ // location.href = url; // } // ); // return false; //} //}); }; window.onload = function() { windowFade(); }; window.onunload = function() { windowFade(); };