//sidebar tab
$(document).ready(function() {	
  	$('#tabMenu > li').click(function(){
    $('#tabMenu > li').removeClass('selected');
    $(this).addClass('selected');
    $('.boxBody div.boxTop, .boxBody div.boxBody, .boxBody div#tab-posts, .boxBody div#tab-famous, .boxBody div#tab-comments, .boxBody div#tab-random, .boxBody div#tab-widget').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).children().animate({paddingLeft:"10px"}, {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() {
  }).mouseout(function() {
    $(this).css('backgroundColor','');
  });  	
});
