$(document).ready(function () {
	$('#history')
		.bind('click', function () {
			window.location = 'history.html';					 
		})
		.bind('mouseover', function () {
			$(this).css('cursor', 'pointer');						 
		});
});