try{
//set get cookie
function setCookie(c_name,value,exdays){
  var exdate=new Date();
  exdate.setDate(exdate.getDate() + exdays);
  var c_value=escape(value) + ((exdays==null) ? "" : "; expires="+exdate.toUTCString());
  document.cookie=c_name + "=" + c_value;
}

function getCookie(c_name)
{
var i,x,y,ARRcookies=document.cookie.split(";");
for (i=0;i<ARRcookies.length;i++)
{
  x=ARRcookies[i].substr(0,ARRcookies[i].indexOf("="));
  y=ARRcookies[i].substr(ARRcookies[i].indexOf("=")+1);
  x=x.replace(/^\s+|\s+$/g,"");
  if (x==c_name)
    {
    return unescape(y);
    }
  }
}

$(document).ready(function() {
try{

  $('a').filter(function() {
	if( $(this).attr('href').substr(0,4).toLowerCase() == 'java'){
		return false;
	}else if(this.hostname && this.hostname !== location.hostname){
		return true;
	}else{
		return false;
	}
  }).attr("target","_blank");

$('.addthis_toolbox').prepend('<g:plusone size="small"></g:plusone>');
$(".highlight").cycle();



}catch(e){}
// END doc.ready

});

$(window).load(function(){
  $spotheight = 0;
  $(".highlightspot").each(function(i){
    if($(this).height() > $spotheight){
      $spotheight = $(this).height();
    }
  });
  $(".highlight").height($spotheight);
});

}catch(e){}

