$('document').ready(function() {
	//Add height to #article section
	var article = $('#article');
	if (article.length > 0) {

		body_content = $('#body-content');
		body_content_height = body_content.height();
		article_height = article.height();
		
		if (article_height > body_content_height) {
			total_height = (article_height - body_content_height) + body_content_height;
		}
		
		body_content.css('height', total_height);
	}
	
  $('a[class*=fancybox]').find('img').addClass('add-image-border');
  
  $(".fancybox").fancybox({
        autoScale: false,
  });
});

