$(document).ready(function() {	
  $('#tabMenu li').click(function(){
    if (!$(this).hasClass('selected')) {    
	    $('#tabMenu li').removeClass('selected');
	    $(this).addClass('selected');
	    $('.boxBody div.parent').slideUp('1500');
	    $('.boxBody div.parent: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').click(function(){
    window.location = $(this).children().attr('href');
  }).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).children().attr('href');
  }).mouseover(function() {
    $(this).css('backgroundColor','#888');
  }).mouseout(function() {
    $(this).css('backgroundColor','');
  });  	
	});

      $(function(){
        $("input, textarea, select, button").uniform();
      });
