// JavaScript Document


// Distributed by http://www.hypergurl.com

// Scrollers width here (in pixels)
var scrollerwidth="350px"

// Scrollers height here
var scrollerheight="160px"

// Scrollers speed here (larger is faster 1-10)
var scrollerspeed=1



// Scrollers content goes here! Keep all of the message on the same line!


var scrollercontent='<center><font face="Arial" size="2" color="black"><strong>Flexible Acoustic Wall Ties</strong></font><br /><br /><a href="wall_ties.html" class="uline"><img src="images/wall_ties_tn.jpg" alt="Acoustic Wall Ties AWT" width="100" height="146" border="0" /></a><br /><br />A large range of Flexible Acoustic Wall Ties<br />for brickwork and blockwork,<br />inner cavity walls or studwork<br />to suit cavities from 50mm to 250mm.<br /><br />For more information see our Leaflet<br /><a href="leaflets/cg_awt_leaflet.pdf" class="uline">PL032<br /><img src="images/pl032.jpg" alt="Thumbnail Image of PDF AWT Leaflet" width="75" height="107" vspace="10" border="0"><br /><strong>AWT Acoustic Wall Ties</a></strong></font><br /><br /><br /><br /><font face="Arial" color="#000000" size="2"><strong>Acoustic Ceiling Hangers</strong><br /><br /><a href="ach.html" class="uline"><img src="images/ach_small.jpg" alt="Acoustic Ceiling Hangers ACH" width="50" height="53" border="0" /></a><br /><br />Designed specifically for applications where audible noise attenuation is of most concern, the <a href="ach.html" target="_new" class="uline">ACH</a> offers a low cost alternative to larger more traditional spring or rubber hangers.</font><br /><br /><br /><br /><font face="Arial" color="#000000" size="2"><strong><a href="small_rubber.html" target="_new" class="uline">SRM</a> - Small Rubber Mounts</strong><br /><br />We have a new rubber mounting available in our Product Range offering high deflections under low load conditions.<br /><br /><a href="small_rubber.html" target="_new" class="uline"><img src="images/srm_small.jpg" alt="Small Rubber Mount" border="0"></a><br /><br />Small Rubber Mounts <b>SRM</b> mountings are designed for light duty applications which still require a high degree of vibration and noise attenuation at medium to low frequencies.<br /><br />High resilience rubber with low dynamic to static stiffness ratio ensures maximum efficiency, good creep performance and long service life.<br /><br />These mountings have a very low profile suitable for restricted height applications.</font><br /><br /><br /><br /><font face="Arial" size="2" color="black"><strong>Catalogue Available.</strong><br /><br /><img src="images/cat_cover_small.jpg" alt="Catalogue" width="87" height="107" border="1"><br /><br />If you would like a copy<br />please complete the details on our<br /><a href="catalogue_request.html" class="uline">Catalogue Request</a><br />Page.</font><br /><br /><br /><br /><font face="Arial" color="#000000" size="2"><strong>SA IPF</strong><br /><br /><a href="sa_ipf.html" class="uline">Self Assembly Inertia Pouring Frames</a> are supplied part assembled for easy installation on site.<br /><br />Inertia Frames have been specially designed for restricted access plant rooms and roof areas.<br /><br />Designed with manual handling in mind.<br /><br />Individual components not weighing more than 6.5 kg each.<br /><br /><a href="sa_ipf.html" class="nline"><img src="images/sa_ipf_5.jpg" alt="Self Assembly IPF" width="150" height="92" hspace="0" vspace="0" align="center" border="0" /></a><br /><br /><br /><br /></center>'

var pauseit=1


// Change nothing below!

scrollerspeed=(document.all)? scrollerspeed : Math.max(1, scrollerspeed-1) //slow speed down by 1 for NS
var copyspeed=scrollerspeed
var iedom=document.all||document.getElementById
var actualheight=''
var cross_scroller, ns_scroller
var pausespeed=(pauseit==0)? copyspeed: 0

function populate(){
if (iedom){
cross_scroller=document.getElementById? document.getElementById("iescroller") : document.all.iescroller
cross_scroller.style.top=parseInt(scrollerheight)+8+"px"
cross_scroller.innerHTML=scrollercontent
actualheight=cross_scroller.offsetHeight
}
else if (document.layers){
ns_scroller=document.ns_scroller.document.ns_scroller2
ns_scroller.top=parseInt(scrollerheight)+8
ns_scroller.document.write(scrollercontent)
ns_scroller.document.close()
actualheight=ns_scroller.document.height
}
lefttime=setInterval("scrollscroller()",20)
}
window.onload=populate

function scrollscroller(){

if (iedom){
if (parseInt(cross_scroller.style.top)>(actualheight*(-1)+8))
cross_scroller.style.top=parseInt(cross_scroller.style.top)-copyspeed+"px"
else
cross_scroller.style.top=parseInt(scrollerheight)+8+"px"
}
else if (document.layers){
if (ns_scroller.top>(actualheight*(-1)+8))
ns_scroller.top-=copyspeed
else
ns_scroller.top=parseInt(scrollerheight)+8
}
}

if (iedom||document.layers){
with (document){
if (iedom){
write('<div style="position:relative;width:'+scrollerwidth+';height:'+scrollerheight+';overflow:hidden" onMouseover="copyspeed=pausespeed" onMouseout="copyspeed=scrollerspeed">')
write('<div id="iescroller" style="position:absolute;left:0px;top:0px;width:100%;">')
write('</div></div>')
}
else if (document.layers){
write('<ilayer width='+scrollerwidth+' height='+scrollerheight+' name="ns_scroller">')
write('<layer name="ns_scroller2" width='+scrollerwidth+' height='+scrollerheight+' left=0 top=0 onMouseover="copyspeed=pausespeed" onMouseout="copyspeed=scrollerspeed"></layer>')
write('</ilayer>')
}
}
}