            $(document).ready(function(){

                $("#footerVideo").click(function(){
                        $("#footerVideoContent").slideToggle();
						toggleVideo($('#Video'));
                });
                
            });
			
			
			
	function toggleVideo(btn)
    {
        if(btn.html() == "ALL VIDEOS")
        {            
		//alert(btn.html())
			$("#footerVideoContent").slideUp('slow');
			$("#footerVideoLinks").slideDown('slow');
            //btn.html("CLOSE")
        }

        else if(btn.html() == "BACK")
        {
            $("#footerVideoContent").slideDown('slow');
            $("#footerVideoLinks").slideUp('slow');
            
        }
		else if(btn.html() == "CLOSE")
        {
            $("#footerVideoContent").slideUp('slow');
            $("#footerVideoLinks").slideUp('slow');
            
        }
    }  
	
	
	
