$(document).ready(function() {

	var height1 = 0;
	var height = 0;

	//$('img#create_account').hide();

	$("div").scroll(function() {
		height1 = $("div#terms1").innerHeight();
		height = $("div#terms").scrollTop();
		console.log('h: ' + height1);
		console.log('h1: ' + height);
		if(height > (height1 - 200)) {
			$('img#create_account').show();
		}
	});

});
