$(document).ready(function(){
	$('#category-life .panels').hide();
	$('#category-life .panels').eq(0).show();
	$('#category-life .tabs h3').hover(function(){
		$('#category-life .tabs h3').removeClass('act');
		$(this).addClass('act');
		var current_val = parseInt(this.id.slice(-1));
		$('#category-life .panels').hide();
		$('#category-life .panels').eq(current_val).show();
	}, function(){
		
	});
});