$(document).scroll(function() {

	var scrheight = parseInt($(document).scrollTop());
	
	if (scrheight > 1) {
	
		$('#headimg').animate({
			opacity: 0.20
		}, 0);
	
	} else {
	
		$('#headimg').animate({
			opacity: 1
		}, 300);
	
	}
	
});

