// Place your application-specific JavaScript functions and classes here
// This file is automatically included by javascript_include_tag :defaults

function toggleWelcomeImage(){
    if (Element.visible('slideshow_folder_container') || Element.visible('open_blog_post') || Element.visible('about_section') || Element.visible('project_1_blog') || Element.visible('slideshow_container') || Element.visible('project_47_blog')|| Element.visible('project_content') || Element.visible('project_1_binder') || Element.visible('press_container')){
	Element.update('welcome_image', '');
	Element.hide('welcome_image');
    }
    else{
	Element.update('welcome_image', '');
	new Ajax.Updater('welcome_image', '/slideshow/update_welcome_image', {asynchronous:true, evalScripts:true});
	Element.show('welcome_image');
    }
}