var divs;

function redrawMenus(){

	divs = document.getElementById('nav_menus').getElementsByTagName("div");
	for(i=0;i<divs.length;i++){
		divs[i].innerHTML = "<img src=\"/uploaded/images/home/menu_top.gif\" style=\"margin-right:11px;\"><span class=\"menu_bg\">" + divs[i].innerHTML + "</span><img src=\"/uploaded/images/home/menu_bottom.gif\" style=\"margin-right:11px;\">";
	}
	
}

function changePhotos(){

	var photo_dir = "/uploaded/home_photos/small_photos/";
	var photo_n = 6;
	var thumb1_n = 3;
	var thumb2_n = 4;
	var delay = 4000;

	var timer = setInterval( function(){
		
		$j('#smallphoto1').animate({opacity:'.1'},200,'',function(){
			$j('#smallphoto1').attr('src', photo_dir + 'photo' + thumb1_n + '.jpg' ).animate({opacity:'1'},200);
		});
		
		
		thumb1_n = thumb1_n + 2; if( thumb1_n > photo_n){ thumb1_n = 1; }		
		setTimeout( function(){
		
			$j('#smallphoto2').animate({opacity:'.1'},200,'',function(){
				$j('#smallphoto2').attr('src', photo_dir + 'photo' + thumb2_n + '.jpg' ).animate({opacity:'1'},200);
			});
		
			thumb2_n = thumb2_n + 2; if( thumb2_n > photo_n){ thumb2_n = 2; }
		} , (delay/2));

	} , delay);

}
