function rightover(m){
m.className='right-menu-mouseover';
}
function rightout(m){
m.className='right-menu';
}
function rightclick(url){
document.location=base[0].href+url;
}




$(document).ready(function(){
	
	IndexCompanies();	
});


function IndexCompanies(){
	var img = $("#topmenu div").eq(0);
	$(img).animate({marginTop:'-='+($(img).height()+5)}, (19000*($(img).height()+5)/100), "linear", IndexCompanies_support);
}


function IndexCompanies_support(){
	
	var img = $("#topmenu div").eq(0);
	$(img).appendTo("#topmenu");
	$(img).css("margin-top", "");
	setTimeout(function() { IndexCompanies(); }, 2000);
}