

$(document).ready(function() {	
  $('#tabMenu > li').click(function(){
    $('#tabMenu > li').removeClass('selected');
    $(this).addClass('selected');
    $('.boxBody div').slideUp('1500');
    $('.boxBody div:eq(' + $('#tabMenu > li').index(this) + ')').slideDown('1500');
  }).mouseover(function() {
    $(this).addClass('mouseover');
    $(this).removeClass('mouseout');   
  }).mouseout(function() {
    $(this).addClass('mouseout');
    $(this).removeClass('mouseover');});
  $('.boxBody #category li').mouseover(function() {
    $(this).css('backgroundColor','#888');
    $(this).children().animate({paddingLeft:"20px"}, {queue:false, duration:300});
  }).mouseout(function() {
    $(this).css('backgroundColor','');
    $(this).children().animate({paddingLeft:"0"}, {queue:false, duration:300});
  });  
  $('.boxBody li').click(function(){
    window.location = $(this).find("a").attr("href");
  }).mouseover(function() {
    $(this).css('backgroundColor','#d6ddfa');
  }).mouseout(function() {
    $(this).css('backgroundColor','');
  });  	
});


