$(function() {
    // PNGfix for Internet Explorer 5.5 & 6
    $(document).pngFix();

    // Navigation effects
    $("#navigation").lavaLamp({
        fx: "backout",
        speed: 700,
        click: function(event, menuItem) {
            //return false;
        }
    });

    // Initialize tabs
    $("#tabs").tabs();

    //Search box show/hide default text if needed
    var searchBox = $("#searchbox");
    var searchBoxDefault = "Search";
    searchBox.focus(function(){
        $(this).addClass('sactive');
        if($(this).attr('value') == searchBoxDefault) $(this).attr('value', '');
    });
    searchBox.blur(function(){
        $(this).removeClass('sactive');
        if($(this).attr('value') == '') $(this).attr('value', searchBoxDefault);
    });

});
