


var rand_no = Math.random();
rand_no = rand_no * 25;
rand_no = Math.ceil(rand_no);


function hideText() {
	$("#mainTekst").css("display","none").fadeOut(1000);
	$("#main_img").css("display","block");

}

function showText() {
	$("#mainTekst").css("display","block").fadeIn(1000);
	$("#main_img").css("display","none").fadeOut(1000);
	
}




function test() {
	$("#mainTekst").css("display","none");
	
}


