/**
 *
 * @package SprintCMSv2_vitalspace.co.uk
 * @author Jim Tunstall <jtunstall@doc-net.com>
 * @copyright Copyright &copy; 2009, Doctor Net Limited
 *
 * Site js functionality - applicable to every page in the site
 */
<?php
   include '../../config/config.d/web.php';
?>
$(document).ready(function() {
   popup_menu();
   check_for_selected_branch();
});

popup_menu = function() {
   $("ul.menu li").hover(
      function () {
         $("ul:first", this).show();
      }, 
      function () {
         $("ul:first", this).hide();
      }
   );
}

check_for_selected_branch = function() {
   if ($.cookie('vs_branch') == null) {
      // Set to branch 1 so we only ever see the thickbox on page load once (i.e. allow users to dismiss thickbox and never see it again!)
      //$.cookie('vs_branch', <?=BRANCH_ID_CASTLEFIELD?>);
      document.cookie = "vs_branch=<?=BRANCH_ID_CASTLEFIELD?>; expires=Thu, 2 Aug 2020 20:47:11 UTC; path=/";
      // Show thickbox
      $("#branch_select_hidden").click();
   }
}

function newWindow(url, width, height) {
   window.open(url, 'propertydetails', 'width=' + width + ',height=' + height + ',scrollbars=yes,resizable=yes');
   return false;
}

/*
function PopUpstreetView() {
  var url='http://www.dezrez.com/utilities/clickmap/streetview.asp?width=600&height=600&long=' + long + '&lat=' + lat + '&ypr=' + ypr;
  newWindow(url, 660, 620)
 }
*/
