var titletext="Dickson Furniture -> Bedrooms ** Diningrooms ** Livingrooms";       // TITLEBAR TEXT
var repeat=true;                                     // SET TO true TO REPEAT, false TO "TYPE" OUT TITLE ONLY ONCE.

var index=0; 

function scrolltitle(){
if(index<=titletext.length){
document.title=titletext.substring(0,index);
index++;
setTimeout('scrolltitle()', 200);
}else{
index=0;
if(repeat)setTimeout('scrolltitle()',1000);
}}

window.onload=function(){
if(!document.layers)setTimeout('scrolltitle()',1000);
}




var dhtml = '', no = 0;


    if (navigator.appVersion.charAt(0) == "4") {
    if (navigator.appVersion.indexOf("MSIE") != -1)
    dhtml = 'IE';
}


    function mover(object) {
        if (dhtml == 'IE') {
        eval(object + '.style.color = "black"');
        eval(object + '.style.textDecoration= "underline"');

    }
        else
         {eval(object + '.style.textDecoration= "underline"');
         } 
    
}


    function mout(object) {


        if (dhtml == 'IE')
         {
         eval(object + '.style.color = "white"');
         eval(object + '.style.textDecoration= "none"');
         }
       
         else
         {eval(object + '.style.textDecoration= "none"');
         } 
}


    function dLink(href,text,title) {

    a = "this.style.textDecoration = 'underline'"
    b = "this.style.textDecoration = 'none'"

    if (dhtml == 'IE')
    document.write('<A HREF="'+href+'" title="'+title+'" style="text-decoration: none" onMouseout="mout(\'link'+no+'\')" onMouseover="mover(\'link'+no+'\')" ID="link'+no+'">'+text+'</A>');
    else
    document.write('<A HREF="'+href+'" title="'+title+'" style="text-decoration: none" onmouseover="'+a+'" onmouseout="'+b+'" >'+text+'</A>');
    no+=1;
}


index1 = 0
var text = "Dickson Furniture -> The Place You Want To Buy Furniture"
 function scrolltitle1()
{
if(index1<=text.length)
{
window.status=text.substring(0,index);
index++;
setTimeout('scrolltitle1()', 200);         
}
else
{
index=0;
if(repeat)setTimeout('scrolltitle1()',1000);
}
}


scrolltitle1();




