function clearInput(id,value) {
    if ( value == $('#'+id).val() ) {
        $('#'+id).val('');
    }
}

function searchSubmit( type ) {
    $('#search-form input[@name=act]').val('search-' + type);
    $('#search-form').submit();
    return false;
}
/*
$(document).ready(function(){
    $('#top-pig').hover(function(){
        $('#snippet').css('z-index',3);
        $('#snippet').animate({
            'opacity':0.8},1000);
    },function(){
    });
    $('#top-pig').mouseout(function(){
        $('#snippet').animate({
            'opacity':0},1000);
        $('#snippet').css('z-index',0);
    });

});
*/
