// JavaScript Document

$(document).ready(function() {
            $('.wp2Link').hover(function() {
                try {
                    $(this).children('.wpText').animate({ bottom: "+=48px" });
                } catch (e) { }
            }, function() {
                try {
                    if ($(this).children('.wpText').position().top <= 172) {
                        $(this).children('.wpText').animate({ bottom: "0px" });
                    }
                }
                catch (e) { }
            });
        });
