﻿/*
	
	Created By: Eddie Giese
	03.24.10
	
*/
/*
	jQuery FixedFloat (via jQuery for Designers)
*/
$(document).ready(function(){
		//test if #nav exists
		if($('#nav').length != 0) {
			var top = $('#nav').offset().top - 60;
			//60px is the margin-top of the #nav when .fixed is applied
			
			$(window).scroll(function(){
				var y = $(window).scrollTop();
				if(y >= top) {
					$('#nav').addClass('fixed');
				} else {
					$('#nav').removeClass('fixed');
				}	
			});
		}
});		

/*
	END OF FILE
*/
