﻿var text = 'Pozivamo Vas da nas posjetite na 84. Jesenskom Medunarodnom Zagrebackom Velesajmu od 16.-21.09.2008 Paviljon br. 10a, Štand br. 8';
var position = 0;
var start = 0;

function onMouseOver(id){
	document.getElementById(id).className = 'buttonOnMouseOver';
}

function onMouseOut(id){
	document.getElementById(id).className = 'button';
}

function onMouseClick(id){
	if(id == 'button1')
	 location.href = "index.htm"
	else if (id == 'button2')
		location.href = "usluga.htm"
	else if (id == 'button3')
		location.href = "program.htm"
	else if (id == 'button4')
		location.href = "skladisna_lista.htm"
	else if (id == 'button5')
		location.href = "asortiman.htm"
	else if (id == 'button6')
		location.href = "karijera.htm"
	else if (id == 'button7')
		location.href = "lokacija.htm"
	else if (id == 'button8')
		location.href = "kontakt.htm"
}

function scrollText(id){
	return 0;
	if(position > 90)
	  document.getElementById(id).innerHTML = text.slice(start++, position);
	else
	  document.getElementById(id).innerHTML = text.slice(0, position);
	
	if(position == text.length){
		position = 0;
		start = 0;
		setTimeout('scrollText(\'' + id + '\');', 3000);
	}
	else{
		position++;
		setTimeout('scrollText(\'' + id + '\');', 100);
	}
} 

