jQuery(document).ready(function(){

//	jQuery(window).scrollTop(450);
	
	var wwidth = jQuery(document).width();
	var wheight = jQuery(document).height();
	

	
	
	jQuery(window).scroll(function(){
		//nav
		if(jQuery(window).scrollTop() > 450) {
			jQuery('#nav').css('top', '0px');
			jQuery('#nav').css('position', 'fixed');
		}
		else {
			jQuery('#nav').css('position', 'absolute');
			jQuery('#nav').css('top', '450px');
		}
		
	});

 
});
