/**************************************************
 * Client: Bahá'í eBooks Publications
 * Date: Nov 2011
 *
 **************************************************/

/**************************************************
 * Execute when the DOM is ready
 **************************************************/

jQuery(document).ready(function()
{
	/**************************************************
	 * Set Cookie
	 **************************************************/
	if ( $.cookie('mode') == 'ePub' || $.cookie('mode') == 'Kindle' ) {
	} else {
		$.cookie('mode', 'ePub', { expires: 7, path: '/', domain: 'bahaiebooks.org/v1/' });
		$('.select-mode-wrapper').eq(0).addClass('mode-active');
	}
});

/**************************************************
 * Functions
 **************************************************/

jQuery(function()
{
	/**************************************************
	 * Individual Seminars
	 **************************************************/
	$(".select-mode-wrapper").click(function()
	{
		// alert( $(this).html() );
		$.cookie('mode', $(this).html() );
		window.location.reload();
	});
});
