$(function () {
  $('.children:first').css('border-top', '3px solid #dddddd' )
  if ($('.entry-title').text() == 'interiors')
    $('#container').css('min-height',"540px");

  var maxHeight =  0;
  if ($('#wrapper').height() < $(document).height())
    maxHeight = $('#wrapper').height();
  else
    maxHeight = $(document).height();

  var marginTop =  -maxHeight + 250;

  $('#mainGallery, #interiorsGallery, #instoreGallery').css('margin-top', marginTop);
  $('#collectionsImg').css('margin-top', marginTop);


  if ($('.entry-title').text() == 'collections')
    $('#collectionsImg').css('background-image',"url(wp-content/themes/davincis/images/photos/collections/" + $('.entry-title').text().replace(" ", "-") + ".jpg)");
  else
    $('#collectionsImg').css('background-image',"url(../wp-content/themes/davincis/images/photos/collections/" + $('.entry-title').text().replace(" ", "-") + ".jpg)");

  $('#collectionsImg').attr('title', $('.hiddenImgTag').text());

  // Disables dragging an image from an HTML page
  $('img').bind('dragstart', function(event) { event.preventDefault(); });
});

