
    jQuery.noConflict();
    (function($) { 
        $(function() {
            $("#to_blog").hover(
		function(){
			$(this).fadeTo(500, 0.8);
		},
		function(){
			$(this).fadeTo(500, 1);
		}
	);
	
	$(".top_tip").css("display","none");
	$("#sitelogo").hover(
		function(){
			$(".top_tip").fadeTo("fast", 1);
		},
		function(){
			$(".top_tip").fadeTo("fast", 0);
		}
	);
	
		$('#bangee_tab li').hover(
			function(){
				$(this).addClass("tab_hover");
			},
			function(){
				if(!$(this).hasClass('active')){
					$(this).removeClass("tab_hover");
				}
			}
		);
		
		$('.tab_mean').click(function(){
			$('.active').removeClass('active tab_hover');
			$(this).addClass('active tab_hover');
			$('.tab_mean_detail').show(function(){
			$('#bangee_tab_detail_inner').jScrollPane({animateTo:true});
			$('#bangee_tab_detail_inner')[0].scrollTo(".tab_mean_detail");
			});
		}); 
		$('.tab_safe').click(function(){
			$('.active').removeClass('active tab_hover');
			$(this).addClass('active tab_hover');
			$('.tab_safe_detail').show(function(){
			$('#bangee_tab_detail_inner').jScrollPane({animateTo:true});
			$('#bangee_tab_detail_inner')[0].scrollTo(".tab_safe_detail");
			});
		});
        });
    })(jQuery);
