	window.onload = function(){
		im1 = new Image();
		im1.src = "images/footer_instructor_o_02.png";
		im3 = new Image();
		im3.src = "images/goto_about_o.png";
		im4 = new Image();
		im4.src = "images/instructor_o_01.png";
		im5 = new Image();
		im5.src = "images/instructor_o_02.png";
		im6 = new Image();
		im6.src = "images/footer_instructor_o_02.png";
		im7 = new Image();
		im7.src = "images/footer_goto_about_o.png";
		im8 = new Image();
		im8.src = "images/goto_home_o.png";
		im9 = new Image();
		im9.src = "images/goto_top_o.png";
		im10 = new Image();
		im10.src = "images/goto_tip_o.png";

	}


	function TipIt(emailIt,nameIt,pa) {
	pa = 'tip_form';
	savet = document.getElementById(pa).style.textAlign;
	save = document.getElementById(pa).innerHTML;
	document.getElementById(pa).style.textAlign = 'center';
	document.getElementById(pa).innerHTML = '<br /><span id="sentTip">רגע בודקות...</span>';
		
		$.get("tipme.php", { email: emailIt, name: nameIt },function(data){
			if (data == 1) {
				document.getElementById(pa).innerHTML = '<br /><span id="sentTip">תודה! פרטיך נרשמו.</span>';
			} else {
				document.getElementById(pa).style.textAlign = savet;
				document.getElementById(pa).innerHTML = save;
				document.getElementById('form_in_email').style.color = 'red';
				document.getElementById('form_in_email').value = 'כתובת האימייל שהזנת לא נכונה';
				
			}
		});
	} // End of doIt
