   jQuery.easing.easeOutQuart = function(x, t, b, c, d){
     return -c * ((t = t / d - 1) * t * t * t - 1) + b;
   };
   jQuery(function($){
     $('.container').serialScroll({
         items: 'li',
         prev: '#gallery .prev-photo',
         next: '#gallery .next-photo',
         offset: -300,
         start: 1,
         duration: 1200,
         force: true,
         stop: true,
         lock: false,
         cycle: true,
         easing: 'easeOutQuart',
         jump: true
     });

   });

   $(function(){
	    $(".menu_item a").corner("top round 5px");
	    $("#gallery .container").corner("round 5px"); 
	    $("#content").corner("bottom round 5px");
	    $("#gallery .next-photo").corner("round 5px");
	    $("#gallery .prev-photo").corner("round 5px");
	  });
   
function go(url){
  document.location.href = url;
}
