// JavaScript Document for left buttom buttun display possition

$(document).ready(function(){
  //get the position of the placeholder element
  var pos = $("#footer-right").offset();  
  var buttonY;
  //when gallary page, need to add height to right-content area for dynamic picture creation.
 	//buttonY = pos.top - 75 - 20 + 210;
  //show button in a normal way
  	buttonY = pos.top - 75 - 20;
   //set button position.
  $("#button-area").css( { "top":(buttonY) + "px" } );
})
