
function clearDefault(el) {
if (el.defaultValue==el.value) el.value = ""
}


var top_header = {
  x:      1, 
  y:      2, 
  radius: 1,
  color:  "#0e3a58"
}

var menu_li_a = {
  x:      2, 
  y:      2, 
  radius: 1,
  color:  "#0e3a58"
}

$(function() {
    $("#top_text").textShadow( top_header );
    $("#content_right h1").textShadow( top_header );
    $("#menu li a").textShadow( menu_li_a );
});

function addslashes(str) {
    str=str.replace(/\\/g,'\\\\');
    str=str.replace(/\'/g,'\\\'');
    str=str.replace(/\"/g,'\\"');
    str=str.replace(/\0/g,'\\0');
    return str;
}
function stripslashes(str) {
    str=str.replace(/\\'/g,'\'');
    str=str.replace(/\\"/g,'"');
    str=str.replace(/\\0/g,'\0');
    str=str.replace(/\\\\/g,'\\');
    return str;
}


