google.load("jqueryui", "1.5.2");

/*
* Verändert die Hintergrundfarbe fließend, wenn die Maus über eine Referenz fährt.
*/
$(document).ready(function () {
    $('div.reference').mouseenter(function () {
        $(this).stop().animate({ backgroundColor : '#001100' }, 100);
    })
	.mouseleave(function () {
	    $(this).stop().animate({ backgroundColor : '#151515' }, 800);
	});
});
