$(document).ready(function() {
	var yOffset = $("#nav").offset().top;
	$(window).scroll(function() {
		if ($(window).scrollTop() > yOffset) {
			$("#nav").css({
				'top': 0,
				'position': 'fixed'
			});
		} else {
			$("#nav").css({
				'top': yOffset + 'px',
				'position': 'absolute'
			});
		}
	});
});

