$(window).scroll(function(event) {
	var y = $(this).scrollTop() / 1;
	if (y >= 500) {
	
		$('.sharebox').stop().animate( {
			marginBottom : "0px"
		}, 50);
	} else {
		$('.sharebox').stop().animate( {
			marginBottom : "-125px"
		}, 0);
	}
});
