/* photo album */


/**
 * displays the photo album
 *
 * @return void
 * @author Tim Cromwell
 **/
function showAlbum()
{
	// hide the popup
	hideModalWindow();

	// display the popup
	showModalWindow();
	
	// the html content
	var htmlContent = '<h3>Photo Album</h3>';
	htmlContent += '<div id="photo_album_flash" style="width: 740px; height: 300px; position: relative;">';
	htmlContent += '<p>In order to view this content you must have <a href="http://get.adobe.com/flashplayer/">Adobe Flash Player</a> version 9 or above installed.</p>';
	htmlContent += '</div>';
	htmlContent += '<p class="small_text">Click or drag the corner of each page to browse the Photo Album</p>';
	
	// insert the content into the popup
	$('div#modal_window_ajax_content').html(htmlContent);
	
	// swfobject
	var so = new SWFObject('/workspace/assets/flash/photo_album/photo_album.swf', 'photo_album', '740', '300', '9', '#EEEEEE');
	so.addParam('wmode', 'opaque');
	so.write('photo_album_flash');
	
	// replace all headings
	Cufon.replace('h3');
	Cufon.now();
}
