$(document).ready(function(){
    $('#faq_category ul li a').hover(function() {
            $(this).stop().animate({ paddingLeft: 45 }, 'fast');
        }, function() {
            $(this).stop().animate({ paddingLeft: 35 }, 'fast');
    });
	var slideSpeed = 500;
	$('.faq_item_question').click(function() {	
		var idToShow = $(this).attr('id').split('question_')[1];
        
        if($('#content_'+idToShow).css('display') != 'none') {
            $('#content_'+idToShow).hide();
        }else {
            $('#content_'+idToShow).fadeIn(slideSpeed);
        }
	});
});
