$(document).ready(function() {
	//-------
	$(".top").click(function() {
		window.location='./index.html';
	});
	//-------
	$(".top").mouseover(function() {
		$(this).css('cursor','pointer');
	});
	//-------
});
