function iover(o){
	o.style.border ='1px solid #FF0000';
}
function iout(o){
	o.style.border ='1px solid #0099ff';
}
var obj;
var it=0;
var intid=-1;
var t,h;
var opened=false;
function moveBoxUp(){
	obj=document.getElementById('sbox');
	if(it==20) clearInterval(intid);
	else{
		it++;
		obj.style.top = (t-10*it)+'px';
		obj.style.height = (h+10*it)+'px';
	}
}
function moveBoxDown(){
	obj=document.getElementById('sbox');
	if(it==20){
		obj.style.display='none';
		clearInterval(intid);
	}
	else{
		it++;
		obj.style.top = (t+10*it)+'px';
		obj.style.height = (h-10*it)+'px';
	}
}
function datailed(){
	obj=document.getElementById('sbox');
	if(opened){
		it=0;
		t=parseInt(obj.style.top);
		h=parseInt(obj.style.height);
		intid = setInterval('moveBoxDown()', 30);
	}
	else{
		obj.style.display='block';
		h=10; it=0;
		t=(document.body.offsetHeight-575)/2+420;
		intid = setInterval('moveBoxUp()', 30);
	}
	opened=!opened;
}

function search(f, a){
	f.action.value=a; 
	f.submit()
}

function openFrame(u,w,h){
	var url='/ru/view_photo.html?url='+u+'&w='+w+'&h='+h;
	if(screen.width<w+20)w=screen.width-100; else w+=18;
	if(screen.height<h+20)h=screen.height-100;
	var l=Math.floor((screen.width-w)/2);
	var t=Math.floor((screen.height-h)/2);
	window.open(url,'','width='+w+',height='+h+',top='+t+',left='+l+',resizable=No,scrollbars=Yes');
}

var img_id=0;
var yamainter;
var img_ar=[];
var ref_ar=[];
img_ar[0]=new Image();
img_ar[0].src='/UserFiles/Image/yama/photo1.jpg';
ref_ar[0]='/ru/word_editor.html';
img_ar[1]=new Image();
img_ar[1].src='/UserFiles/Image/yama/photo2.jpg';
ref_ar[1]='/ru/dance_school_vlada_yami.html';
$(document).ready(function(){
	yamainter=window.setInterval(function(){
		document.getElementById('yama').style.backgroundImage='url('+img_ar[img_id].src+')';
		document.getElementById('yama_link').href=ref_ar[img_id];
		img_id=Math.abs(img_id-1);
	},3000);
});

