// Start it!
$(document).ready(function(){

    $("a.referenceItem").bind("mouseenter", function() {
        $("#id_" + $(this).attr("id")).show("slow");
    })

    $("a.referenceItem").bind("mouseleave", function() {
	    $("#id_" + $(this).attr("id")).hide("fast");
    });

})
