/*
Tabs Menu (mouseover)- By Dynamic Drive
http://www.dynamicdrive.com
This credit MUST stay intact for use
*/

var submenu=new Array()

//Set submenu contents. Expand as needed. For each content, make sure everything exists on ONE LINE. Otherwise, there will be JS errors.
 
submenu[0]='<img src="images/sml_Fedelis.jpg" width="150" height="148" border="1" alt="David & Kim Fedeli"><P><b>Planet 9 Design Studios</b> was founded in 1985 by the husband and wife team of David & Kim Fedeli. Their distinctly different, yet complimentary design styles combine to provide you with a wider array of design choices.</P><P>With a combined experience of over 50 years in the design and printing industry, Planet 9 has the ability to guarantee your satisfaction. An exceptional ability to communicate with you to reach your goals is just one of the things that sets Planet 9 apart from the crowd.&nbsp;&nbsp;&nbsp;<a href="AboutUs.html"><font size=1>MORE INFORMATION...</A></font>'

submenu[1]='<img src="images/sml_2webs2.jpg" width="450" height="191"><BR><b>Planet 9 Design Studios</b> has been in the business of producing professional web sites for over 10 years.<BR><BR>Our focus has always been to put the needs of the client first, in order to create a web site that accomplishes all of the goals the customer requires. Our sites combine amazing functionality and creativity into a complete package that will exceed your expectations <i>and</i> show off your company in the best light.<BR><BR>Our extensive experience in commercial design provides you with a level of quality and communication that ensures your needs are met, on time and within your budget.&nbsp;&nbsp;&nbsp;<a href="WebDesign.html"><font size=1>MORE INFORMATION...</A></font>'

submenu[2]='<center><img src="images/PrintSamples.gif" width="173" height="150"><img src="images/DesignTools.gif" width="119" height="150"></center><BR><b>For well over 25 years</b>, we have been actively involved in graphic design for the printing industry. We have worked with countless printing customers to ensure that their message is being communicated effectively in their printed materials.<BR><BR>Our services include all aspects of graphic design and typesetting, as well as digital and conventional prepress functions. From logo and stationery design, to color separation and trapping, we have seen and done it all.<BR><BR>We have worked for, and with, dozens of printing companies and design firms over the years, and have established a reputation for creating files that produce the best possible printing results. We can even take care of getting your materials printed and copied by reliable and reputable commercial printing companies. From Design to Delivery, you can count on us to perform. <a href="GraphicDesign.html"><font size=1>MORE INFORMATION...</A></font>'

submenu[3]='<img src="images/FineArts.jpg" width="450" height="230"><P><b>In addition to our commercial design services</b>, Planet 9 offers Fine Arts services as well.</P><P> These services include acrylic and oil paintings from David Fedeli, and oil paintings and giclees from world reknowned artist, Robert Watson. Other artists and services are being added regularly, so this section of the site will be evolving over time.&nbsp;&nbsp;&nbsp;<a href="FineArts.html"><font size=1>MORE INFORMATION...</A></font>'

submenu[4]='<img src="images/Contact.jpg" width="310" height="196"><BR><b>Planet 9 Design Studios can be reached at:</b><P>12635 Danielson Court, Suite 206, Poway, CA 92064<BR>By phone at: 858-755-5194<BR>or by <a href="ContactUs.html"><font size=1>EMAIL</A><BR><a href="ContactUs.html">MORE INFORMATION...</font>'

submenu[5]='<img src="images/Privacy.gif" width="200" height="127"><P><b>Planet 9 Design Studios</b> has no aspirations other than the creation of quality artwork and well-designed, functional web sites.<BR><BR>We have no illusions of making enough money to retire by selling off your email addresses or ANY personal information to ANYONE, ANYWHERE at ANY TIME. We do not, and will not EVER "share" any information about you with ANYONE!<BR><BR>It is our solemn promise that any information you impart to us will remain with us (and only us) until the heavens come crashing down upon us all. The only purpose this site would have for requesting any information from you would be to provide a high level of personalized customer service to you.<BR><BR>If you have any questions regarding our policies, please do not hesitate to contact us.'

submenu[6]='<img src="images/copyright.gif" width="23" height="25"><P><b>Unless otherwise indicated, all content of this web site and all code contained herein is the exclusive copyright protected property of Planet 9 Design Studios.</b><BR><BR><B>All rights are reserved.</b><BR><BR>Nothing contained within this site domain may be used, copied, or stolen without express written consent.</P><P>For more information, you can reach us using the "Contact Planet 9" link.</font><BR><BR>&copy 2003 - Planet 9 Design Studios / Planet9Design.com'

//Set delay before submenu disappears after mouse moves out of it (in milliseconds)
var delay_hide=500

/////No need to edit beyond here

var menuobj=document.getElementById? document.getElementById("describe") : document.all? document.all.describe : document.layers? document.dep1.document.dep2 : ""

function showit(which){
clear_delayhide()
thecontent=(which==-1)? "<img src=images/SymbolBG.jpg border=0>" : submenu[which]
if (document.getElementById||document.all)
menuobj.innerHTML=thecontent
else if (document.layers){
menuobj.document.write(thecontent)
menuobj.document.close()
}
}

function resetit(e){
if (document.all&&!menuobj.contains(e.toElement))
delayhide=setTimeout("showit(-1)",delay_hide)
else if (document.getElementById&&e.currentTarget!= e.relatedTarget&& !contains_ns6(e.currentTarget, e.relatedTarget))
delayhide=setTimeout("showit(-1)",delay_hide)
}

function clear_delayhide(){
if (window.delayhide)
clearTimeout(delayhide)
}

function contains_ns6(a, b) {
while (b.parentNode)
if ((b = b.parentNode) == a)
return true;
return false;
}
