$(document).ready(function() {
	var sPath = window.location.pathname;
	var sPage = sPath.substring(sPath.lastIndexOf('/') + 1);
	if (sPage != 'index.php' && sPage != '') {
		$('#top_logo').click(function() {
			window.location.href = 'index.php';
		});
		$('#top_logo').addClass('cursor');
	} else {
		$('#twitter_icon').click(function() {
			window.location.href = 'http://twitter.com/okolestuff';
		});
		$('#twitter_icon').addClass('cursor');
	}
});
