// JavaScript Document
  function catContainerHoverOn(element) {
    var elementName;
    elementName = element.id.replace(/Container/, "");
				document.getElementById(elementName).style.top="30px";
    document.getElementById(elementName).style.borderColor="#ffcc33";
    elementName = element.id.replace(/Container/, "Text");
				document.getElementById(elementName).style.fontWeight="bold";
				document.getElementById(elementName).style.top="40px";
    element.style.top="-33px";
    element.style.height="240px";
    element.style.background="url(http://www.bikeshedwales.com/images/cat_bg-sale.gif) top left repeat-x";
				element.style.border="4px #212125 solid"; 
		}

  function catContainerHoverOff(element) {
    var elementName = element.id.replace(/Container/, "");
				document.getElementById(elementName).style.top="10px";
				document.getElementById(elementName).style.borderColor="#212125"
    elementName = element.id.replace(/Container/, "Text");				
				document.getElementById(elementName).style.fontWeight="normal";
				document.getElementById(elementName).style.top="10px";
				element.style.top="0px";
				element.style.height="200px";
    element.style.background="#ffcc33";
				element.style.border="4px #ffcc33 solid";

		}
		
		function openOYBcalculator() {
    var width = 490
 	  var height = 480
    window.open("http://www.bikeshedwales.com/oybcalculator.html", "oybCalcWin", "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width=" + width + ",height=" + height);

    return true;
		}
		
		function openRemote(type) {
    switch(type) {
				  case "OYBcalculator":
        window.open("http://www.bikeshedwales.com/oybcalculator.html", "oybCalcWin", "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width=490,height=480");
        return(false);
      break;
						case "requestDetails":
        window.open("http://www.bikeshedwales.com/requestdetails.html", "requestDetails", "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width=490,height=480");
				    return(false);
      break;
						default:
						break;
				}

		}