If the company is so restrictive regarding internet access, the proxy is probably configured as HTTP(s) gateway only, there will be no port commands available so direct internet traffic is out of range without a custom box off the network.
A custom box might be your internet router at home with installed DD-WRT or OpenWRT. The only thing you need to do is to setup it's ssh console to port 443 (HTTPS) - all using nice web admin panel (DD-WRT has the edge considering ease of use). The alternative is to use a friend's linux box, some dedicated server or a cheap virtual server as the only functionality you will need is running ssh server on port 443.
If you have a linux box with ssh on port 22 or other, non-default, just add following lines to /etc/init.d/local (or /etc/conf.d/local.start):
iptables -A PREROUTING -t nat -p tcp --dport 443 -j REDIRECT --to-port 22
iptables -I INPUT -j ACCEPT -p tcp --dport 443
iptables -I INPUT -j ACCEPT -p tcp --dport 22
Now you need to connect to your box from work, you can use swiss army knife - putty. Here is a nice article how to bypass proxy and here is the article how to setup local SOCKS proxy on a machine running putty client. Combine both articles to get expected result - setting up SOCKS proxy while connecting from behind a HTTP proxy.
Good luck, freedom will win.