Hey ppl,
Got a challenge for you. Im building my portfolio website and i want to combine two scripts.
This one (my website)
http://www.wiljanbiemans.nl
<!--
//Pulldown script
window.onload=montre;
function montre(id) {
var d = document.getElementById(id);
for (var i = 1; i<=10; i++) {
if (document.getElementById('smenu'+i)) {document.getElementById('smenu'+i).style.display= 'none';}
}
if (d) {d.style.display='block';}
}
//-->
with this one
http://www.bosrup.com/web/overlib/
<a href="javascript :void(0);" onmouseover="return overlib('This is an ordinary
popup.');" onmouseout="return nd();">here</a>
the second one comes with some js files.
Any idea's??? Would really apperiate it.
Thnx
Last edited by skillz; 02-21-2008 at 05:54 AM..
|