function linkize(a) {
    $(a).mouseover(function () {
        $(this).css("color", "green")
    }).mouseout(function () {
        $(this).css("color", "black")
    })
}
var BASE_URL = "http://vitochin.com";
$(document).ready(function () {
    $("#header span").click(function(){
        window.location.replace(BASE_URL);
    });

    $("#summary_focus").click(function(){
        window.location.replace("http://pecl.php.net/package/gmagick");
    });
});

