var now = new Date();
var sec = now.getSeconds();
var Uhrzeit=now.getHours();

// Anzahl der Texte
var AnzahlTag = 4;
var AnzahlNacht = 4;

// Zeitspanne
var SpanneStart = 10;
var SpanneStop = 17;

function Textausgabe() {
if (Uhrzeit>=SpanneStart & Uhrzeit<=SpanneStop)
{
var random_number = sec % AnzahlTag;
random_number +=1;

if (random_number==1) {
text="<span class='text1'>Our pipe robots with milling facility are used in situations where pipeline grooves must be reworked.<br><br><a href='milling_robots.html' class='text1'><img src='images/nav.gif' alt='weiter' width=15 height=13 border='0'>more information...</a></span>"
}
if (random_number==2) {
text="<span class='text1'>The grinding robots of INSPECTOR SYSTEMS Rainer Hitzel GmbH were specially designed for the refurbishment of pipes and pipelines.<br><br><a href='grinding_robots.html' class='text1'><img src='images/nav.gif' alt='weiter' width=15 height=13 border='0'>more information...</a></span>"
}
if (random_number==3) {
text="<span class='text1'>Inspections using pipe crawlers can prevent possible incidents in power stations and reduce outages caused by downtimes.<br><br><a href='customized_robots.html' class='text1'><img src='images/nav.gif' alt='weiter' width=15 height=13 border='0'>more information...</a></span>"
}
if (random_number==4) {
text="<span class='text1'>Inspection robots for different types of piping are available for video inspection. The integrated high-resolution camera also has a zoom function.<br><br><a href='video_robots.html' class='text1'><img src='images/nav.gif' alt='weiter' width=15 height=13 border='0'>more information...</a></span>"
}

document.write(text);
return
}
else
{
var random_number = sec % AnzahlNacht;
random_number +=1;

if (random_number==1) {
text="<span class='text1'>INSPECTOR SYSTEMS assesses quality by meeting customer expectations. That is one of our fundamental principles.<br><br><a href='philosophy.html' class='text1'><img src='images/nav.gif' alt='weiter' width=15 height=13 border='0'>more information...</a></span>"
}
if (random_number==2) {
text="<span class='text1'>INSPECTOR SYSTEMS Rainer Hitzel GmbH is also a long-standing partner of various large corporations, even corporations operating internationally.<br><br><a href='references.html' class='text1'><img src='images/nav.gif' alt='weiter' width=15 height=13 border='0'>more information...</a></span>"
}
if (random_number==3) {
text="<span class='text1'>Procedure-oriented quality management is an absolute must for any modern undertaking in the production sector striving for reliability.<br><br><a href='certification.html' class='text1'><img src='images/nav.gif' alt='weiter' width=15 height=13 border='0'>more information...</a></span>"
}
if (random_number==4) {
text="<span class='text1'>The know-how of specialists working in different fields puts us in a position to offer the customer a comprehensive solution from one source.<br><br><a href='special_machines.html' class='text1'><img src='images/nav.gif' alt='weiter' width=15 height=13 border='0'>more information...</a></span>"
}

document.write(text);
return
}
}
