$(document).ready(function() {


	$(function(){
		$("#content").wrapInner("<table class=\"wrapper\"><tr>");
		$(".section").wrap("<td>");
	});
	
	$(function() {

	   $("html, body").mousewheel(function(event, delta) {

	      this.scrollLeft -= (delta * 30);

	      event.preventDefault();

	   });

	});
	

});

$(document).bind("contextmenu",function(e){
       return false;
   });
