<!-- hide JavaScript from non-JavaScript browsers


function Is ()

{   // convert all characters to lowercase to simplify testing

    var agt=navigator.userAgent.toLowerCase();


    // *** BROWSER VERSION ***

    // Note: On IE5, these return 4, so use is.ie5up to detect IE5

    // or is.ie6up to detect IE6.


    this.major = parseInt(navigator.appVersion);

    this.minor = parseFloat(navigator.appVersion);


    // Note: Opera and WebTV spoof Navigator.  We do strict client detection.

    // If you want to allow spoofing, take out the tests for opera and webtv.

	this.nav  = ((agt.indexOf('mozilla')!=-1) && (agt.indexOf('spoofer')==-1) 
	
				&& (agt.indexOf('firefox')==-1) &&(agt.indexOf('safari')==-1)
				
				&& (agt.indexOf('chrome')==-1) 

                && (agt.indexOf('compatible') == -1) && (agt.indexOf('opera')==-1)

                && (agt.indexOf('webtv')==-1) && (agt.indexOf('hotjava')==-1));

    this.nav2 = (this.nav && (this.major == 2));

    this.nav3 = (this.nav && (this.major == 3));

    this.nav4 = (this.nav && (this.major == 4));

    this.nav4up = (this.nav && (this.major >= 4));

    this.navonly      = (this.nav && ((agt.indexOf(";nav") != -1) ||

                          (agt.indexOf("; nav") != -1)) );

    this.nav6 = (this.nav && (this.major == 5));

    this.nav6up = (this.nav && (this.major >= 5));

    this.nav6down = (this.nav && (this.major <= 5));

    this.gecko = (agt.indexOf('gecko') != -1);

    this.firefox = (agt.indexOf('firefox') != -1);

    this.safari = (agt.indexOf('safari') != -1);


    this.ie     = ((agt.indexOf("msie") != -1) && (agt.indexOf("opera") == -1));

    this.ie3    = (this.ie && (this.major < 4));

    this.ie4    = (this.ie && (this.major == 4) && (agt.indexOf("msie 4")!=-1) );

    this.ie4up  = (this.ie  && (this.major >= 4));

    this.ie5    = (this.ie && (this.major == 4) && (agt.indexOf("msie 5.0")!=-1) );

    this.ie5_5  = (this.ie && (this.major == 4) && (agt.indexOf("msie 5.5") !=-1));

    this.ie5up  = (this.ie  && !this.ie3 && !this.ie4);

    this.ie5_5up =(this.ie && !this.ie3 && !this.ie4 && !this.ie5);

    this.ie6    = (this.ie && (this.major == 4) && (agt.indexOf("msie 6.")!=-1) );

    this.ie6up  = (this.ie  && !this.ie3 && !this.ie4 && !this.ie5 && !this.ie5_5);


    // KNOWN BUG: On AOL4, returns false if IE3 is embedded browser

    // or if this is the first browser window opened.  Thus the

    // variables is.aol, is.aol3, and is.aol4 aren't 100% reliable.

    this.aol   = (agt.indexOf("aol") != -1);

    this.aol3  = (this.aol && this.ie3);

    this.aol4  = (this.aol && this.ie4);

    this.aol5  = (agt.indexOf("aol 5") != -1);

    this.aol6  = (agt.indexOf("aol 6") != -1);


    this.opera = (agt.indexOf("opera") != -1);

    this.opera2 = (agt.indexOf("opera 2") != -1 || agt.indexOf("opera/2") != -1);

    this.opera3 = (agt.indexOf("opera 3") != -1 || agt.indexOf("opera/3") != -1);

    this.opera4 = (agt.indexOf("opera 4") != -1 || agt.indexOf("opera/4") != -1);

    this.opera5 = (agt.indexOf("opera 5") != -1 || agt.indexOf("opera/5") != -1);

    this.opera8 = (agt.indexOf("opera 8") != -1 || agt.indexOf("opera/8") != -1);

	this.opera9 = (agt.indexOf("opera 9") != -1 || agt.indexOf("opera/9") != -1);

	this.opera92 = (agt.indexOf("opera 9") != -1 || agt.indexOf("opera/9.2") != -1);

    this.opera9up = (this.opera && !this.opera2 && !this.opera3 && !this.opera4 && !this.opera5 && !this.opera6 && !this.opera8 && !this.opera92);


    this.mac    = (agt.indexOf("mac")!=-1);

    // hack ie5 js version for mac


}


var is;

var isIE3Mac = false;

// this section is designed specifically for IE3 for the Mac


if ((navigator.appVersion.indexOf("Mac")!=-1) && (navigator.userAgent.indexOf("MSIE")!=-1) && (parseInt(navigator.appVersion)==3))

       isIE3Mac = true;

else   is = new Is(); 

if ((is.mac && is.ie) || (is.ie5)  || (is.ie5_5)  || (is.nav6down) || (is.opera8)|| (is.opera92))
	{
	}
else
{
document.write(unescape("%3Cscript src='../js/jquery-1.3.min.js' type='text/javascript'%3E%3C/script%3E"));
document.write(unescape("%3Cscript src='../js/jquery.galleriffic.js'  type='text/javascript' charset='utf-8'%3E%3C/script%3E"));
document.write(unescape("%3Cscript src='../js/galleriffic.js'  type='text/javascript' charset='utf-8'%3E%3C/script%3E"));
document.write(unescape("%3Cscript src='../js/yuga.js' type='text/javascript' charset='utf-8'%3E%3C/script%3E"));
document.write(unescape("%3Cscript src='../js/ie6csshover.htc' type='text/javascript' %3E%3C/script%3E"));
document.write(unescape("%3Cscript src='../js/linkbox.js' type='text/javascript' %3E%3C/script%3E"));
document.write(unescape("%3Cscript src='../js/heightLine.js' type='text/javascript' %3E%3C/script%3E"));
}



//--> end hide JavaScript


