$(document).ready(function() {
	$('#top').hover(function() {
		$(this).css('cursor', 'pointer');
	}, function() {
		$(this).css('cursor', 'default');
	});
	$('#top').click(function() {
		document.location.href = '/';
	});
	$('a[rel*=facebox]').facebox();
});

