/**
 * Actions called after page load
 */
/*$(document).ready(function() {*/
$(window).load(
    function() {
  repairBacks();
});

function showFaq(id) {
  if($("#questionContent"+id).css('display') == 'none')
    $("#questionContent"+id).show();
  else
    $("#questionContent"+id).css('display', 'none');
}

function repairBacks() {
  height = $("#mainContiner").height();
  footerHeight = $("#footerCont").height();
  $(".leftBackground").height(height+footerHeight+36);
  $(".rightBackground").height(height+footerHeight+36);
  width = $(document).width();
  $(".leftBackground").width((width-962)/2);
  $(".rightBackground").width((width-962)/2);
}
