$(document).ready ( function() {
							 $("#nextBtn").click(function() {
														  $(".gallery_ext").animate({left:"-70"},1200)
														  return false;
														  }
														  );
							 $("#prevBtn").click(function() {
														  $(".gallery_ext").animate({left:"0"},1200)
														  return false;
														  }
														  );
							 }
							 );
