 $(function() {	

    $('#tabMenu > li').click(function(){    
      if (!$(this).hasClass('selected')) { 
        $('#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 #posts li').click(function(){
      window.location = $(this).children().attr('href');
    }).mouseover(function() {
      $(this).css('backgroundColor','');
      $(this).children().animate({paddingLeft:"20px"}, {queue:false, duration:300});
    }).mouseout(function() {    
      $(this).css('backgroundColor','');
      $(this).children().animate({paddingLeft:"0"}, {queue:false, duration:300});
    }); 
	
	$('.boxBody #comments li').click(function(){
      window.location = $(this).children().attr('href');
    }).mouseover(function() {
      $(this).css('backgroundColor','');
      $(this).children().animate({paddingLeft:"20px"}, {queue:false, duration:300});
    }).mouseout(function() {    
      $(this).css('backgroundColor','');
      $(this).children().animate({paddingLeft:"0"}, {queue:false, duration:300});
    });
		
	$('.boxBody #category li').click(function(){
      window.location = $(this).children().attr('href');
    }).mouseover(function() {
      $(this).css('backgroundColor','');
      $(this).children().animate({paddingLeft:"20px"}, {queue:false, duration:300});
    }).mouseout(function() {    
      $(this).css('backgroundColor','');
      $(this).children().animate({paddingLeft:"0"}, {queue:false, duration:300});
    });	
	
	$('.boxBody #famous li').click(function(){
      window.location = $(this).children().attr('href');
    }).mouseover(function() {
      $(this).css('backgroundColor','');
      $(this).children().animate({paddingLeft:"20px"}, {queue:false, duration:300});
    }).mouseout(function() {    
      $(this).css('backgroundColor','');
      $(this).children().animate({paddingLeft:"0"}, {queue:false, duration:300});
    });
	
	$('.boxBody #plan li').click(function(){
      window.location = $(this).children().attr('href');
    }).mouseover(function() {
      $(this).css('backgroundColor','');
      $(this).children().animate({paddingLeft:"20px"}, {queue:false, duration:300});
    }).mouseout(function() {    
      $(this).css('backgroundColor','');
      $(this).children().animate({paddingLeft:"0"}, {queue:false, duration:300});
    });
	
	$('.boxBody #production li').click(function(){
      window.location = $(this).children().attr('href');
    }).mouseover(function() {
      $(this).css('backgroundColor','');
      $(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).children().attr('href');
    }).mouseover(function() {
      $(this).css('backgroundColor','#999');
    }).mouseout(function() {
      $(this).css('backgroundColor','');
    });  	

  });

