﻿/*
Copyright by Audi 2006
http://audi.tw
http://www.carousel.com.tw
歡迎應用於無償用途散播，並請勿移除本版權宣告

*/
$(document).bind("contextmenu",function(e){   
    return false;   
});
$(document).keypress(function(e){
        if(e.ctrlKey && e.which == 65 || e.which == 97) { 
			return false; 
        }
 })
