// JavaScript Document
$(document).ready(function(){
	$('#listaindexjs li').hover(
		function(){
			$(this).css({
				'background-color': '#ddedf4',
				'cursor': 'pointer'
			});
		},
		function(){
			$(this).css({
				'background-color': '#FFFFFF',
				'cursor': 'none'
			});
		}
	);
	
	$('#listaindexjs li').click(function(){
		window.location.href=$(this).attr('milink');
	});
});
