function make_strip(text){
var h = 0;
var top = 0;
div = "";
var i = 0;

for(i=0; i<=10; i++){
	h = 5 + 4.5*i;
	top = 50*i;
	div = '<DIV style=" height: '  + h + 'px ; ';
	div = div + 'top: ' + top + 'px;">&nbsp;</DIV>';
	
	document.writeln(div);}

};

function init_home(){
tick = 25;
incr = 0.01;
x = 0;
layer_2 = document.getElementById('layer_2');
layer_2.opacity = 0;
image = document.getElementById('image');
image.style.opacity = 0;

anim_opacity();}


function anim_opacity(){

	if ( +x<=1 ){
	layer_2.style.opacity = x;
	image.style.opacity = 2*x;	
	x = +x + incr;	


	window.setTimeout("anim_opacity()", tick);
	};
	
};
