$(document).ready(function(){
    $("#sidebar ul#tools li:last").css("margin-left", "0");
    $("#header ul li a").css("border-left", "1px dotted #38B");
    $("#header ul li a:last").css("border-left", "0");
    $("#header ul li a:last").css("padding-left", ".5em");
    $(".tooltip").simpletooltip();
$("#author")
    .val("الاسم")
    .css("color", "#6A6A6A")
    .focus(function(){
    $(this).css("color", "black");
    if ($(this).val() == "الاسم") {
    $(this).val("");
    }
    })
    .blur(function(){
    $(this).css("color", "#6A6A6A");
    if ($(this).val() == "") {
    $(this).val("الاسم");
    }
});
$("#email")
    .val("Mail (will not be published)")
    .css("color", "#6A6A6A")
    .focus(function(){
    $(this).css("color", "black");
    if ($(this).val() == "Mail (will not be published)") {
    $(this).val("");
    }
    })
    .blur(function(){
    $(this).css("color", "#6A6A6A");
    if ($(this).val() == "") {
    $(this).val("Mail (will not be published)");
    }
});
$("#url")
    .val("Website")
    .css("color", "#6A6A6A")
    .focus(function(){
    $(this).css("color", "black");
    if ($(this).val() == "Website") {
    $(this).val("");
    }
    })
    .blur(function(){
    $(this).css("color", "#6A6A6A");
    if ($(this).val() == "") {
    $(this).val("Website");
    }
});

});