// JavaScript Document

$(document).ready(function() {
	if ($.browser.msie && $.browser.version < 8) {
		$('.question a').parent().parent().children('.answer').hide();
		$("#full_width_column_bottom").animate({height: 40}, 1, function() {$("#full_width_column_bottom").css('height', '15px')});
	} else {	
		$('.question a').parent().parent().children('.answer').hide();
	}
	$('.expanded').show();
	$('.question a').click(function() {
		$(this).parent().parent().children('.answer').slideToggle('normal', function() {});
		if ($.browser.msie && $.browser.version < 8) {
			$("#full_width_column_bottom").animate({height: 40}, 'normal', function() {$("#full_width_column_bottom").css('height', '15px')});
		}
		return false;
	});
});
