// JavaScript Document
$(window).scroll(function(){
	if('0' =='0' ){
		if ($(document).scrollTop() >=200){
			$(".t_scrollfirstbar").show();
			$(".t_scrollsecondbar").show();
			}else {
			$(".t_scrollfirstbar").hide();
			$(".t_scrollsecondbar").hide();
		}
		if ($(document).scrollTop() >= $(document).height() / 4){
			$(".c_scrollbar").show("slow");
			}else{
			$(".c_scrollbar").hide("slow");}
	}
});
function closeFBsticker(){$('.c_scrollbar').remove();}

