// *****************************************************************************
// INTERFACE *******************************************************************
// *****************************************************************************
function enterPanel() {
	//alert('debug: panel link');
	$(this).parents("li").css("background-color", "#eeeeee");
}
function leavePanel() {
	$(this).parents("li").css("background-color", "transparent");
}

$(document).ready(function(){
	$(".delicious-post").addClass("rbnpanel");
	$(".rbnpanel").find("a").mouseenter(enterPanel);
	$(".rbnpanel").find("a").mouseleave(leavePanel);
	$("#rbnpreviouslink").fadeTo('slow',0.1);
	$("#rbnnextlink").fadeTo('slow',0.1);
}); // close document.ready	
