if ( $.browser.msie && $.browser.version == '6.0') {
	$(window).scroll(function() {
		if( $(this).scrollTop() > 220 ) {
			$('.long100percent').css({
				'paddingTop' : $(this).scrollTop() - 220 + 'px'
			});
		} else {
			$('.long100percent').css({
				'paddingTop' : '0'
			});
		}	
	});
} else {
	$(window).scroll(function() {
		if( $(this).scrollTop() > 220 ){
			$('.long100percent .scrollable').css({
				'position' 	: 'fixed',
				'marginTop'	: '-220px'
			});
		} else {
			$('.long100percent .scrollable').css({
				'position' 	: 'absolute',
				'marginTop'	: '0'
			});
		}
	});
} 

