﻿$(document).ready(function () {
    setInterval("runString()", 300);
});
$(window).resize(function(){
	width = document.body.clientWidth;
	if (width < 975) {
		w = width - 975;
		document.getElementById("rgtBar").style.right = w+'px';
	}
	else{
		document.getElementById("rgtBar").style.right = '9px';
	}
});
function runString() {
	now = document.getElementById('palata').innerHTML;
	now = now.substring(1, now.length) + now.substring(0,1);
	document.getElementById("palata").innerHTML =  now;
}
function _go(id) {
	location.href=document.getElementById(id).options[document.getElementById(id).selectedIndex].value;
	}
