tt

dd

HTML

<html>
<head></head>
<body>
    <div class="forum">
        test
    </div>
</body>
</html>

CSS

.forum{
    background:#f0f;
}

JavaScript

$(document).ready(function() {
    var colorOrig=$(".forum").css('background');
    $(".forum").hover(
    function() {
        //mouse over
        $(this).css('background', '#ff0')
    }, function() {
        //mouse out
        $(this).css('background', colorOrig)
    });
});