$(document).ready(function() {
	
/*	$('div#nav span.menuToggle').click(function() {
//		$(this).parent().toggleClass('open');
		$(this).parent().animate( { width:"160px" }, { queue:false, duration:100 } );
	});
*/
	
	$("div#nav span.menuToggle").toggle(
      function () {
        $(this).parent().animate( { width:"160px" }, { queue:false, duration:300 }, $(this).parent().addClass('open') );
      },
      function () {
        $(this).parent().animate( { width:"10px" }, { queue:false, duration:300 }, $(this).parent().removeClass('open') );
      }
    );
	
});


