
var marginOne = 385;
var marginTwo = -220;

function Intro() {

	document.getElementById('pic_1_1').style.marginLeft = marginOne + "px";
	document.getElementById('pic_1_2').style.marginLeft = marginOne + "px";
	document.getElementById('pic_2_1').style.marginLeft = marginTwo + "px";
	document.getElementById('pic_2_2').style.marginLeft = marginTwo + "px";
	
	GetLogoIn();
}

function GetLogoIn() {

	marginOne -= 3;
	if (marginOne < 21) {
		marginOne = 20;
	}
	
	marginTwo = marginTwo + (360 / 365) * 3;
	
	document.getElementById('pic_1_1').style.marginLeft = marginOne + "px";
	document.getElementById('pic_1_2').style.marginLeft = marginOne + "px";
	document.getElementById('pic_2_1').style.marginLeft = parseInt(marginTwo) + "px";	
	document.getElementById('pic_2_2').style.marginLeft = parseInt(marginTwo) + "px";	

	if (marginOne > 20) {
		window.setTimeout("GetLogoIn();", 5);
	}
}
