$(document).ready(function() {
$('#repeater').pager('.productsanditems', {
  navId: 'nav3',
  prevText: 'Previous',
  nextText: 'Next',
  linkText: ['1', '2', '3', '4', '5', '6', '7', '8', '9', '10', '11', '12', '13', '14', '15', '16', '17', '18', '19', '20', '21', '22', '23', '24', '25', '26', '27', '28', '29', '30', '31', '32', '33', '34', '35', '36']
});

$('#repeater').pager('.productsanditems', {
  navId: 'nav1',
  navAttach: 'prepend',
  prevText: 'Previous',
  nextText: 'Next',
  linkText: ['1', '2', '3', '4', '5', '6', '7', '8', '9', '10', '11', '12', '13', '14', '15', '16', '17', '18', '19', '20', '21', '22', '23', '24', '25', '26', '27', '28', '29', '30', '31', '32', '33', '34', '35', '36']
});

$('#nav3 a').click(function() {
$('html, body').animate({
scrollTop: $("#HtmlBody").offset().top
}, 900);
});

  $('div[class^="moreinfo"]').click(function() {
     var s = $(this).attr('class');
     $('.' + s + ' img').attr('src', '/images/atlanticapp/images/down.gif');
     var r = s.replace('info', '');
     $('.' + r).slideDown("slow");
   
  $('.close').click(function() {
   $('.' + s + ' img').attr('src', '/images/atlanticapp/images/up.gif');
   $('.' + r).slideUp("slow");


});
$('.submitbtn').click(function() {
   var locate = location.href;
   $('.' + r + ' form').submit();
   location.href = locate;
});
});
}); 
