// JavaScript Document
$(function () {
						
	//將滑鼠右鍵事件取消 (IE Only)					
	document.body.oncontextmenu = function () {
		return false; 
	}						
	
	document.body.onmousedown = function (event) {
		
		// IE is evil and doesn't pass the event object 
		if (event == null) 
			event = window.event; 
			
		if (event.button == 2)
			return false;
	}; 
	
});
