$(function() {
    //tips over the main menu links 
    $("div#header a").qtip({
        style: { 
            padding: 5,
            background: "url('/media/css/alpha40.png')",
            color: 'white',
            width: {max: 220, min: 80},
            padding: 10,
            fontSize: 11,
            lineHeight: 1.2,
        },
        position: { 
            target: 'mouse',
            adjust: {
                x: 5,
                y: 5,
            },
        },
    });

    // Populates the search text input on load
    // but removes its default content on first focus
    $("div#search input[type=text]")
        .val("search")
        .focus(function() {
                $(this).val("").unbind('focus');
        });
});

