

function ProcessBox() {
    $("div.fdebox").hover(function() {
    $(this).stop();
    $(this).animate({ backgroundColor: "#0094b8" }, 250);
    }, function() {
    $(this).stop();
    $(this).animate({ backgroundColor: "#31C4D8" }, 500);
});
}

function xSquares() {
    $("#xbox").hover(function() {
    $(this).stop();
    $(this) .animate({ backgroundColor: "#d7d7d7" }, 250);   
    }, function() {
    $(this).stop();
    $(this).animate({ backgroundColor: "#eeeeee" }, 500);
});
}

function imageFade() {
    $("img.fadelm").hover(function() {
    $(this).stop();
    $(this).animate({ opacity: 1 }, 250);   
    }, function() {
    $(this).stop();
    $(this).animate({ opacity: 0 }, 500);
});
}

function lmLinks() {

    $("a.fade").hover(function() {
    $(this).stop();
    $(this).animate({ color: "#ffffff" }, 250);
    }, function() {
    $(this).stop();
    $(this).animate({ color: "#9b8c16" }, 500);
});
}

function lmButtons() {

    $("#bttn_all").hover(function() {
    $(this).stop();
    $(this).animate({ opacity: 1 }, 250);   
    }, function() {
    $(this).stop();
    $(this).animate({ opacity: 0 }, 500);
 });

}

function PaginateHover() {

    $(".imgFade").hover(function() {
    $(this).stop();
    $(this).animate({ opacity: 1 }, 250);   
    }, function() {
    $(this).stop();
    $(this).animate({ opacity: 0.5 }, 500);
 });

}


