// JavaScript PhotoAlbumPart
var isIE = document.all!=null;
function switchphoto(prefix, element, newtitle, newurl, thickboxurl){
	var childs = element.parentNode.getElementsByTagName('li');
	for( i=0 ; i < childs.length ; i++){
		rClass(childs[i], 'in');
	}
	aClass(element, 'in');
	document.images['photobookimage'+prefix].src = newurl;
	/*
	document.getElementById('photobookimagebutton'+prefix).href = thickboxurl;
	document.getElementById('photobookimagebutton'+prefix).title = newtitle;
	document.getElementById('photobookimage'+prefix).title = newtitle;
	*/
	document.getElementById('photobookimage'+prefix).alt = newtitle;
}

function switchalbum(todisable, toenable){
	document.getElementById(todisable).style.display='none';
	document.getElementById(toenable).style.display='';
}


function rClass(element, classname) {
	//$(element).removeClass('in');
	$(".thumbs ul li").removeClass('in');
}

function aClass(element,classname) {
	$(element).addClass('in');
}

//End JavaScript PhotoAlbumPart