function changeStyle(id, property, value){
	itemstyle = document.getElementById(id).style;
	eval("itemstyle." + property + " = '" + value + "'");
}

vCounter = 0;
function vSlides(){
	document.images["vPicture"].src = vArray[vCounter].src;
	if (vCounter < (vArray.length - 1)) vCounter++;
	else vCounter = 0;
	setTimeout("vSlides()", 10000);
}

hCounter = 0;
function hSlides(){
	document.images["hPicture"].src = hArray[hCounter].src;
	if (hCounter < (hArray.length - 1)) hCounter++;
	else hCounter = 0;
	setTimeout("hSlides()", 10000);
}
