﻿$(function(){
     $("#pagetop a").click(function(){
     $('html,body').animate({ scrollTop: $($(this).attr("href")).offset().top }, 'slow','swing');
     return false;
     })
	 jQuery("#qa02,#qa03").hide();
     jQuery("#qa a").click(function(){
	 jQuery(".select img").attr("src",jQuery(".select img").attr("src").replace("_on.jpg", ".jpg"));
	 jQuery("#qa a").removeClass("select");
	 jQuery(this).addClass("select");
	 jQuery("img",this).attr("src",jQuery("img",this).attr("src").replace(".jpg", "_on.jpg"));
	 jQuery("#question .tab").hide();
	 jQuery(jQuery(this).attr("href")).show();
	 return false;
	});
});

