jQuery(document).ready(function(){
	

		jQuery(window).scroll(function() {
			var h = jQuery(".bgPic").height();
			
			if ( jQuery(window).scrollTop() > h + 168 ) {
				jQuery("#INVIZ").css('display', 'block');
			} else {
				jQuery("#INVIZ").css('display', 'none');
			}
		});
		
	

});
