// JavaScript Document

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

function sendEmail(){
	document.location.href='mailto:' + email; 	

}
function getMap(){
		
	document.location.href='http://maps.google.com/maps?oi=map&q='+address+','+city+','+state+' '+zip;
	
}

function deleteCookie(name) {
  if (getCookie(name)) {
    document.cookie = name+ "; expires=Thu, 01-Jan-70 00:00:01 GMT";
  }
}

window.onbeforeunload = function(){
// Fix Flashes own cleanup code so if the SWF Movie was removed from the page
// it doesn't display errors.
	window["__flash__removeCallback"] = function (instance, name) {
		try {
			if (instance) {
							instance[name] = null;
			}
			} catch (flashEx) {
	   
		}
	};
}


/***********************************************
* Floating Top Bar script- © Dynamic Drive (www.dynamicdrive.com)
* Sliding routine by Roy Whittle (http://www.javascript-fx.com/)
* This notice must stay intact for legal use.
* Visit http://www.dynamicdrive.com/ for full source code
***********************************************/

var persistclose=0 //set to 0 or 1. 1 means once the bar is manually closed, it will remain closed for browser session
var startX = 0 //set x offset of bar in pixels
var startY = 200 //set y offset of bar in pixels
var verticalpos="frombottom" //enter "fromtop" or "frombottom"

function iecompattest(){
return (document.compatMode && document.compatMode!="BackCompat")? document.documentElement : document.body
}

function get_cookie(Name) {
var search = Name + "="
var returnvalue = "";
if (document.cookie.length > 0) {
offset = document.cookie.indexOf(search)
if (offset != -1) {
offset += search.length
end = document.cookie.indexOf(";", offset);
if (end == -1) end = document.cookie.length;
returnvalue=unescape(document.cookie.substring(offset, end))
}
}
return returnvalue;
}

function closebar(){
if (persistclose)
document.cookie="remainclosed=1"
document.getElementById("edit").style.visibility="hidden"
}

function staticbar(){
	barheight=document.getElementById("edit").offsetHeight
	var ns = (navigator.appName.indexOf("Netscape") != -1) || window.opera;
	var d = document;
	function ml(id){
		var el=d.getElementById(id);
		if (!persistclose || persistclose && get_cookie("remainclosed")=="")
		el.style.visibility="visible"
		if(d.layers)el.style=el;
		el.sP=function(x,y){this.style.left=x+"px";this.style.top=y+"px";};
		el.x = startX;
		if (verticalpos=="fromtop")
		el.y = startY;
		else{
		el.y = ns ? pageYOffset + innerHeight : iecompattest().scrollTop + iecompattest().clientHeight;
		el.y -= startY;
		}
		return el;
	}
	window.stayTopLeft=function(){
		if (verticalpos=="fromtop"){
		var pY = ns ? pageYOffset : iecompattest().scrollTop;
		ftlObj.y += (pY + startY - ftlObj.y)/8;
		}
		else{
		var pY = ns ? pageYOffset + innerHeight - barheight: iecompattest().scrollTop + iecompattest().clientHeight - barheight;
		ftlObj.y += (pY - startY - ftlObj.y)/8;
		}
		ftlObj.sP(ftlObj.x, ftlObj.y);
		setTimeout("stayTopLeft()", 10);
	}
	ftlObj = ml("edit");
	stayTopLeft();
}

//jQuery Check Script
var jQueryLoading;
var functionBacklog = new Array();
function checkjQuery(callback) {
	// Only add jQuery if jQuery isn't defined
	if (typeof jQuery == 'undefined') {
		function getScript(url, success) {
			if (!jQueryLoading) {
				jQueryLoading = true;
				var script = document.createElement('script');
				script.src = url;
				var head = document.getElementsByTagName('head')[0],
				done = false;
				script.onload = script.onreadystatechange = function() {
					if (!done && (!this.readyState || this.readyState == 'loaded' || this.readyState == 'complete')) {
						done = true;
						success();
						initiateBacklog();
						script.onload = script.onreadystatechange = null;
					};
				};
				head.appendChild(script);
			} else {
				functionBacklog.push(success);
			}
		};
		getScript('http://common.pbhs.com/Scripts/jquery.js', function() {callback();});
	} else { 
		callback();
	};
}

function initiateBacklog() {
	for(var x in functionBacklog) {
		functionBacklog[x]();
	}
}

function initAccordionMenu() {
	var page_url;
	var page_url=unescape(location.href);
	var offset_folder = page_url.lastIndexOf('/')-1;
	page_url = ".." + page_url.substr(page_url.lastIndexOf('/', offset_folder))
	menu_id = "#accordion_menu";
		
	$(menu_id+" ul").each(function(index, domEle) {
		if($(this).attr("class") != "nohide"){
			$(this).hide();
		}else{
			$(this).siblings().addClass('active');
		}
	});
	
	$(menu_id+" li").each(function(index, domEle) {
		
		if($(this).find("a").attr("href") == page_url){
			var found = $(this).find("ul");
			if (found.length == 0) {
				var search = $(this).parent().parent().children("a");
				if (search.length == 0) {
					$(this.children).addClass('active');
				} else {
					$(this).parent().parent().children("a").addClass('active')
					$(this).oneTime(1000, function() {
					$(this).parent("ul").slideDown('slow', 'easeOutQuad');
					});
				}
			} else {
				$(this.children).addClass('active');
				$(this).oneTime(1000, function() {
					$(this).find("ul").slideDown('slow', 'easeOutQuad');
				});
			}
			//$(this.children).addClass('active');
		}
	});
		$(menu_id+" li a").click(
		function() {
			if($(this).attr("href") == "#" || $(this).attr("href") == page_url){
				var checkElement = $(this).next();
				if((checkElement.is('ul')) && (checkElement.is(':visible'))) {
					if($(this).attr("class") != "nohide"){
							$(checkElement).slideUp('normal');
							$(checkElement).siblings().removeClass("active");
						}
						
					return false;
				 }
				if((checkElement.is('ul')) && (!checkElement.is(':visible'))) {
					$(menu_id+" ul").each(function(index, domEle) {
						if($(this).attr("class") != "nohide"){
							$(this).slideUp('normal');
							$(this).prev().removeClass("active");
						}												
					});
					checkElement.slideDown('normal');
					$(this).addClass('active');
					return false;
				 }
			 }
		 });
	
 }

