var currentAlbum = null;

function showAlbum(albumID){
	
	// if the album is already open, just close it
	if(albumID == currentAlbum){
		$("#album_"+currentAlbum).slideUp();
		$("#albumLink_"+currentAlbum).removeClass("selectedAlbum");
		currentAlbum = null;
		return;				
	}
	
	// otherwise open the album
	if(currentAlbum != null){
		$("#album_"+currentAlbum).hide();
		$("#albumLink_"+currentAlbum).removeClass("selectedAlbum");		
	}

	if(currentAlbum == null){
		$("#album_"+albumID).slideDown();		
	}
	else{
		$("#album_"+albumID).show();		
	}

	$("#albumLink_"+albumID).addClass("selectedAlbum");
	currentAlbum = albumID;
}

function setupTwitter(){
	$("#twitter_update_list li").after("<li class='bubbleitem'><div class=\"twitter_bubble_img\"><img src=\"images/bubblearrow-noshadow.png\"></div></li>");
	$("#twitter_update_list li").corner();
	$(".section-container").corner();
	//$("h1").corner();
}


$(document).ready(function(){
	//showAlbum(5);
	setupTwitter();
});