// main functions

$(function(){
  $.fn.supersized.options = {  
    startwidth: 800,  
    startheight: 480,
    vertical_center: 1,
    slideshow: 0, //0-No, 1-Yes
    navigation: 0,
    transition: 1, //0-None, 1-Fade, 2-slide top, 3-slide right, 4-slide bottom, 5-slide left
    pause_hover: 0,
    slide_counter: 1,
    slide_captions: 1,
    slide_interval: 3000  
  };
    $('#supersize').supersized(); 
});

$(document).ready(function() {
  
  // homepage content: default -- hide content
  $("p#address-info").hide();
  
  // homepage content: onclick -- show content
  $("#footer-content > span#address").click(function() {
    $("p#address-info").show();
  })

});