// Custom for eMeehan Theme
function tabSwitch() {
	$('.comment_shell .tab_list h4').eq(0).addClass('active');
	$('.comment_shell .tab_content').hide();
	$('.comment_shell .tab_content').eq(0).show();
	$('.comment_shell .tab_list h4').hover(
		function(){
			if(!$(this).hasClass('active'))
			$(this).addClass('hover');
		},
		function(){
			$(this).removeClass('hover');
		}
	);

	$('.comment_shell .tab_list h4').click(function(){
		var i = $('.comment_shell .tab_list h4').index(this);
		$('.comment_shell .tab_content').hide();
		$('.comment_shell .tab_content').eq(i).show();
		$('.comment_shell .tab_list h4').removeClass('active');
		$('.comment_shell .tab_list h4').removeClass('hover');
		$('.comment_shell .tab_list h4').eq(i).addClass('active');
	});

};
function goTwitter() {
	$('#twitter li').addClass('grid_2');
	$('#twitter li:first').addClass('omega');
	$('#twitter li:last').addClass('alpha');
	$('#twitter li > a').removeAttr('style');
;
}
