$(document).ready(function() {
	$('#blog').click( function() {
		window.location.href = ("/Blog/index.html")
	});
	$('#home').click( function() {
		window.location.replace("index.html")
	});
	$('#contact').click( function() {
		window.location.replace("contact.html")
	});
});

