// JavaScript Document


// Disable right click
$(document).ready(function(){
$(document).bind("contextmenu",function(e){
return false;
});
});
;

