function setVisitCount(count) {
  $.cookie("visitCount", count);
};

function getVisitCount() {
  var count = $.cookie("visitCount");
  return (count == null)? 0 : parseInt(count);
};

function resetVisitCount() {
  setVisitCount(null);
};

function changeHtml() {

/*
  var faqHtml = '<a id="reset-count" href="fullwidthwhite.php?page=businessfaq">'
              + '<img src="images/home_works_03_associate.jpg" alt="Some Project" />'
              + '<div class="description-overlay">'
              + '<h4>Live your BEST</h4>'
              + '<p>The quick links to the things you need to run your business</p>'
              + '<span style="color:#68ba17">see more →</span>'
              + '</div>'
              + '</a>';
  
  var faqHtmlOne = '<a id="reset-count" href="page.php?page=promotions">'
              + '<img src="images/home_works_01_associate.jpg" alt="Some Project" />'
              + '<div class="description-overlay">'
              + '<h4>Amplify Convention Promotion</h4>'
              + '<p>Do not miss out on your chance to participate in this promotion</p>'
              + '<span style="color:#6c91ac">see more →</span>'
              + '</div>'
              + '</a>';
  
  $('#latest_work li:nth-child(3)').html(faqHtml);
  $('#latest_work li:nth-child(1)').html(faqHtmlOne);
  */
};

$(document).ready(function() {
  var count = getVisitCount() + 1;
  setVisitCount(count);
  
  if(count >= 2) {
    changeHtml();
  }
  
  $('#copyrightLineClick').live('click',function(){
	resetVisitCount();
  });
});
