// JavaScript Document
$(document).ready(function(){

	$('#guide').append('気になるお悩みや質問項目をクリックしてください。');
	$('dl#faq>dd').hide();
	$('dl#faq>dt').hover(
		function () {
    		$(this).css("color","#FC03A9");
		},
		function () {
    		$(this).css("color","#6F4A43");
		}
	);
	$('dl#faq>dt').click(function(){
		pageTracker._trackEvent('FAQ', 'Interesting', $(this).text());
		$(this).next().slideToggle("fast");
		$(this).css("color","#993333");
	});
	
});

