$(document).ready(function()
{
	$(".listapp").mouseover(function()
	{
		$(this).css("background-color", "#eeeeff");
	});

	$(".listapp").mouseout(function()
	{
		$(this).css("background-color", "#fff");
	});
});