$(document).ready(function(){
    $("dl.additional-actions").hover(
        function() {
           $("dd", this).show();
           $(this).addClass("unfolding");
        }, 
        function() {
           $("dd", this).hide();
           $(this).removeClass("unfolding");
        } 
    );

    $("#highlights td").hover(
        function() {
           $(this).addClass("hover-offer");
        }, 
        function() {
           $(this).removeClass("hover-offer");
        } 
    );

    $("#highlights td").click(
        function() {
	   base = $('base').attr('href');
	   url = base + $(this).attr('id');
	   $(location).attr('href', url);
        });
});

