
//if (navigator.appName.indexOf("Internet Explorer") != -1) document.onmousedown = noSourceExplorer;
//function noSourceExplorer()
//{ if (event.button == 2 | event.button == 3) alert("對不起喔 …… 請不要再按右鍵咯，謝謝您啊！"); }

$jQuery(document).ready(function(){      
  // 全部 PNG 在 IE5.5 IE6 透明
  $jQuery('img[src$=.png]').ifixpng().iunfixpng().ifixpng();
	
	// GIF JPG 滑鼠改變圖像  
  $jQuery("img[src$=_out.gif], img[src$=_out.jpg], input[src$=_out.gif], input[src$=_out.jpg]")
    .css({cursor: 'pointer'})
    .hover(
      function () {
        var over_src = this.src.substring(0, this.src.lastIndexOf('_out' + this.src.substring(this.src.lastIndexOf('.')))) + '_over' + this.src.substring(this.src.lastIndexOf('.'));
        $jQuery(this).attr('src', over_src);
      },
      function () {
       var out_src = this.src.substring(0, this.src.lastIndexOf('_over' + this.src.substring(this.src.lastIndexOf('.')))) + '_out' + this.src.substring(this.src.lastIndexOf('.'));
        $jQuery(this).attr('src', out_src);
      }
    );
});

