$(document).ready(function() {	
	//for faq
	$('.list-control').click(function() {
		var div = $(this).attr('id') + '-div';
		if ($('#' + div).is(':hidden')) $(this).html('hide');
		else $(this).html('expand');
		$('#' + div).slideToggle('medium');
	});
	
	$('.go-top').click(function() {
		$('html, body').animate({scrollTop:680}, 'slow');
	});
	
	$('.faq-question').click(function() {
		var pos = $(this).attr('id') + '-pos';
		$('html, body').animate({scrollTop: $('#' + pos).offset().top}, 500);
	});
});