// JavaScript Document
$(function() {
      $('img.image0').data('ad-title', 'Title daadasdasd');
      $('img.image0').data('ad-desc', 'DESC');
    $('img.image1').data('ad-desc', 'hi');
    $('img.image1').data('ad-title', 'Title through $.data');
    $('img.image4').data('ad-desc', 'This image is wider than the wrapper, so it has been scaled down');
    $('img.image5').data('ad-desc', 'This image is higher than the wrapper, so it has been scaled down');
    var galleries = $('.ad-gallery').adGallery({
						slideshow: {
									enable:false,
									autostart: false,
									speed: 5000
									},
						animation_speed: 400,
						effect:'fade'
					});

  });
