jQuery(document).ready(function(){
	jQuery('.side_bar_tab').click(function(e){
		jQuery('.active').removeClass('active');
		
		if(e.target.id == "tag" || e.target.id == "taga"){
			jQuery('#freshc').hide();
			jQuery('#popularc').hide();
			jQuery('#tagc').show();
			
			jQuery('#tag').addClass('active');			
			
			jQuery('#taga').attr("src", "http://jlee.biz/modernbaglady/wp-content/themes/modern/custom/images/active_tag.png");
			jQuery('#populara').attr("src", "http://jlee.biz/modernbaglady/wp-content/themes/modern/custom/images/inactive_popular.png");
			jQuery('#fresha').attr("src", "http://jlee.biz/modernbaglady/wp-content/themes/modern/custom/images/inactive_tree.png");
			
			jQuery('#fresh, #popular').removeClass('left_shade');
			jQuery('#fresh, #popular').addClass('right_shade');
		}else if(e.target.id == "popular" || e.target.id == "populara"){
			jQuery('#freshc').hide();
			jQuery('#popularc').show();
			jQuery('#tagc').hide();
			
			jQuery('#popular').addClass('active');
			
			jQuery('#taga').attr("src", "http://jlee.biz/modernbaglady/wp-content/themes/modern/custom/images/inactive_tag.png");
			jQuery('#populara').attr("src", "http://jlee.biz/modernbaglady/wp-content/themes/modern/custom/images/active_popular.png");
			jQuery('#fresha').attr("src", "http://jlee.biz/modernbaglady/wp-content/themes/modern/custom/images/inactive_tree.png");
			
			jQuery('#fresh').removeClass('left_shade');
			jQuery('#tag').removeClass('right_shade');
			
			jQuery('#fresh').addClass('right_shade');
			jQuery('#tag').addClass('left_shade');		
		}else if(e.target.id == "fresh" || e.target.id == "fresha"){
			jQuery('#fresh').addClass('active');
			
			jQuery('#freshc').show();
			jQuery('#popularc').hide();
			jQuery('#tagc').hide();
			
			jQuery('#taga').attr("src", "http://jlee.biz/modernbaglady/wp-content/themes/modern/custom/images/inactive_tag.png");
			jQuery('#populara').attr("src", "http://jlee.biz/modernbaglady/wp-content/themes/modern/custom/images/inactive_popular.png");
			jQuery('#fresha').attr("src", "http://jlee.biz/modernbaglady/wp-content/themes/modern/custom/images/active_tree.png");
			
			jQuery('#popular, #tag').removeClass('right_shade');
			jQuery('#popular, #tag').addClass('left_shade');		
		}
	});
});
