$(document).ready(function() {		$('.nav_home').click(function (){		window.location = 'index.html';	});		$('.nav_offering').click(function (){		window.location = 'offering.html';	});	$('.nav_who').click(function (){		window.location = 'who.html';	});	$('.nav_buzz').click(function (){		window.location = 'buzz.html';	});	$('.nav_contact').click(function (){		window.location = 'contact.html';	});					});
