var Smoothmedia = Class.create({
    
    init: function(){
        this.menuVisible = false;
    },
    
    toggleMenu: function(){
        if(this.menuVisible){
            $('whatwedo-dropdown').blindUp({duration: 0.2});
            $('menu-button').src="/Resources/Images/what-we-do-off.png";
            this.menuVisible = false;
        }else{
            $('whatwedo-dropdown').blindDown({duration: 0.2});
            $('menu-button').src="/Resources/Images/what-we-do-on.png";
            this.menuVisible = true;
        }
    }
    
});