$(document).ready(function() {
						   
  var $tabone = $('#tabone > ul > li > a');
  $tabone.click(function() {

	var $parentItem = $(this).parent(),
        slideAmt = $(this).next().width(),
        direction;
		
    $tabone.removeClass('expanded');

	if (parseInt($('.tab-type').css('width')) == 577) { 
	  $('.tab-type').animate({ width: "44px" }, 400 );

	} else {
      $(this).addClass('expanded');
	  $('.tab-type').animate({ width: "577px" }, 400 );

    }
	
    return false;
  });
  
  var $tabtwo = $('#tabtwo > ul > li > a');
  $tabtwo.click(function() {

	var $parentItem = $(this).parent(),
        slideAmt = $(this).next().width(),
        direction;
		
    $tabtwo.removeClass('expanded');

	if (parseInt($('.tab-search').css('width')) == 274) { 
	  $('.tab-search').animate({ width: "44px" }, 400 );

	} else {
      $(this).addClass('expanded');
	  $('.tab-search').animate({ width: "274px" }, 400 );

    }
	
    return false;
  });  
  
});
