/** * * @package SprintCMSv2_vitalspace.co.uk * @author Jim Tunstall * @copyright Copyright © 2009, Doctor Net Limited * * Site js functionality - applicable to every page in the site */ $(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!) document.cookie = "vs_branch=1548; 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) } */ $(document).ready(function(){ $("li#floorplanlink a").fancybox(); });