$(document).ready(function(){
	$("html").keypress(function (e) { if(e.which==37){ gallery.prev(); }else if(e.which==39){ gallery.next(); } });
 });

$(document).ready(function(){
	gallery.init();
});	