/*	
	init.js
	===============================================================
	Panoramica
	_______________________________________________________________
*/

	glow.ready(
						 
		function() 
		{	
			var template_id = glow.dom.get('body').attr('id');
			
			move_footer();
			
			if ((section_id == 4) && (depth == 3))
			{
				make_frames_clickable();
			}
			
			activate_faux_links(); // after make_frames_clickable()				
			
			if ( glow.dom.get('#soundcloud-player').length > 0 )		
			{		
				embed_soundcloud_player();
			}
			
			if ((theme_id > 0) && (!atomz) && ( glow.dom.get('#related').length > 0 ) )
			{	
				// edit request url to test fllback error msg
				request_theme_image_details('/_includes/phpFlickr-2.2.0/panoramica/theme-image.php?known_id=' + theme_id);			
			}		
		
			glow.events.addListener(window, 'resize', 
				function() 
				{
					move_footer();
				}
			);	
		}
	);