function ma(m){
	var s='mai';
	m2=strrev(m).replace(/\*/,"@");
	document.write('<a hr' + 'ef="' +  s  + 'lto:'+m2+'">' + m2 + '</'+'a>');
}

function strrev( string ){
    // http://kevin.vanzonneveld.net
    var ret = '', i = 0;
    string += '';
    for ( i = string.length-1; i >= 0; i-- )
       ret += string.charAt(i);
    return ret;
}

$(document).ready(function(){
	$('#font-size a').click(function(){
		  var size = this.id.substring(10);
		  $('body').css('font-size',size+'%');
		  $.cookie('font-size', size, {expires:90,path:'/'});
	  });
});

// greabox root directory
var GB_ROOT_DIR = "/js/greybox/";