http://jsfiddle.net/blankasaurus/YPR4U/15/embedded/result/
I have the layout functioning how I want it to function. I'm not sure I like having to set the width in the toggle function:
$('.content').css('width', '100%');
$('.content').css('width', '75%');
and I also REALLY don't like having to set a timeout before showing and hiding the menu panel:
setTimeout(function()
{
$('.sidebar').fadeIn();
}, 1001);
Is there a better way to go about this?
Here's a fiddle: