//Contents for menu 1

//Contents for menu 2, and so on
var gallery=new Array()
gallery[0]='<a href="gallery_aventura.html">Aventura Area</a>'
gallery[1]='<a href="gallery_interior_foam_designs.html">Interior Foam Designs</a>'
gallery[2]='<a href="gallery_LA_fitness.html">LA Fitness</a>'
gallery[3]='<a href="gallery_marina.html">Marina One</a>'
gallery[4]='<a href="gallery_marisol_plaza.html">Marisol Shopping Plaza</a>'
gallery[5]='<a href="gallery_pavlik.html">Pavlik Design Team</a>'
gallery[6]='<a href="gallery_residential_communities.html">Residential Communities</a>'
gallery[7]='<a href="gallery_shops_of_midtown.html">Shops of Midtown</a>'
gallery[8]='<a href="gallery_south_beach.html">South Beach</a>'
gallery[9]='<a href="gallery_target.html">Target</a>'

var products=new Array()
products[0]='<a href="moldings.html">Moldings</a>'
products[1]='<a href="trims.html">Trims</a>'
products[2]='<a href="window_sills.html">Window Sills</a>'
products[3]='<a href="columns.html">Columns</a>'
products[4]='<a href="arches.html">Arches</a>'
products[5]='<a href="wall_caps.html">Wall Caps</a>'
products[6]='<a href="shutters_louvers.html">Shutters and Louvers</a>'
products[7]='<a href="decorative_shapes.html">Decorative Shapes</a>'
products[8]='<a href="rustic_wood_beams.html">Rustic Wood Beams</a>'
products[9]='<a href="rustic_wood_corbels.html">Rustic Wood Corbels</a>'
products[10]='<a href="cast_coral_foam.html">Cast Coral Foam</a>'

var support=new Array()
support[0]='<a href="faq.html">FAQ Section</a>'
support[1]='<a href="pdf_files.html">PDF File Section</a>'
support[2]='<a href="employment.html">Employment Opportunities</a>'


var menuwidth='200px' //default menu width
var menubgcolor='ededed'  //menu bgcolor
var disappeardelay=250  //menu disappear speed onMouseout (in miliseconds)
var hidemenu_onclick="yes" //hide menu when user clicks within menu?

/////No further editting needed

var ie4=document.all
var ns6=document.getElementById&&!document.all

if (ie4||ns6)
document.write('<div id="dropmenudiv" style="visibility:hidden;width:'+menuwidth+';background-color:'+menubgcolor+'" onMouseover="clearhidemenu()" onMouseout="dynamichide(event)"></div>')

function getposOffset(what, offsettype){
var totaloffset=(offsettype=="left")? what.offsetLeft : what.offsetTop;
var parentEl=what.offsetParent;
while (parentEl!=null){
totaloffset=(offsettype=="left")? totaloffset+parentEl.offsetLeft : totaloffset+parentEl.offsetTop;
parentEl=parentEl.offsetParent;
}
return totaloffset;
}


function showhide(obj, e, visible, hidden, menuwidth){
if (ie4||ns6)
dropmenuobj.style.left=dropmenuobj.style.top=-500
if (menuwidth!=""){
dropmenuobj.widthobj=dropmenuobj.style
dropmenuobj.widthobj.width=menuwidth
}
if (e.type=="click" && obj.visibility==hidden || e.type=="mouseover")
obj.visibility=visible
else if (e.type=="click")
obj.visibility=hidden
}

function iecompattest(){
return (document.compatMode && document.compatMode!="BackCompat")? document.documentElement : document.body
}

function clearbrowseredge(obj, whichedge){
var edgeoffset=0
if (whichedge=="rightedge"){
var windowedge=ie4 && !window.opera? iecompattest().scrollLeft+iecompattest().clientWidth-15 : window.pageXOffset+window.innerWidth-15
dropmenuobj.contentmeasure=dropmenuobj.offsetWidth
if (windowedge-dropmenuobj.x < dropmenuobj.contentmeasure)
edgeoffset=dropmenuobj.contentmeasure-obj.offsetWidth
}
else{
var topedge=ie4 && !window.opera? iecompattest().scrollTop : window.pageYOffset
var windowedge=ie4 && !window.opera? iecompattest().scrollTop+iecompattest().clientHeight-15 : window.pageYOffset+window.innerHeight-18
dropmenuobj.contentmeasure=dropmenuobj.offsetHeight
if (windowedge-dropmenuobj.y < dropmenuobj.contentmeasure){ //move up?
edgeoffset=dropmenuobj.contentmeasure+obj.offsetHeight
if ((dropmenuobj.y-topedge)<dropmenuobj.contentmeasure) //up no good either?
edgeoffset=dropmenuobj.y+obj.offsetHeight
}
}
return edgeoffset
}

function populatemenu(what){
if (ie4||ns6)
dropmenuobj.innerHTML=what.join("")
}


function dropdownmenu(obj, e, menucontents, menuwidth){
if (window.event) event.cancelBubble=true
else if (e.stopPropagation) e.stopPropagation()
clearhidemenu()
dropmenuobj=document.getElementById? document.getElementById("dropmenudiv") : dropmenudiv
populatemenu(menucontents)

if (ie4||ns6){
showhide(dropmenuobj.style, e, "visible", "hidden", menuwidth)
dropmenuobj.x=getposOffset(obj, "left")
dropmenuobj.y=getposOffset(obj, "top")
dropmenuobj.style.left=dropmenuobj.x-clearbrowseredge(obj, "rightedge")+"px"
dropmenuobj.style.top=dropmenuobj.y-clearbrowseredge(obj, "bottomedge")+obj.offsetHeight+"px"
}

return clickreturnvalue()
}

function clickreturnvalue(){
if (ie4||ns6) return false
else return true
}

function contains_ns6(a, b) {
while (b.parentNode)
if ((b = b.parentNode) == a)
return true;
return false;
}

function dynamichide(e){
if (ie4&&!dropmenuobj.contains(e.toElement))
delayhidemenu()
else if (ns6&&e.currentTarget!= e.relatedTarget&& !contains_ns6(e.currentTarget, e.relatedTarget))
delayhidemenu()
}

function hidemenu(e){
if (typeof dropmenuobj!="undefined"){
if (ie4||ns6)
dropmenuobj.style.visibility="hidden"
}
}

function delayhidemenu(){
if (ie4||ns6)
delayhide=setTimeout("hidemenu()",disappeardelay)
}

function clearhidemenu(){
if (typeof delayhide!="undefined")
clearTimeout(delayhide)
}

if (hidemenu_onclick=="yes")
document.onclick=hidemenu

