$(document).ready(function(){
$("#slider").slider({ 
	animate: true,
	value: '2',
	max: '4'
	
});

});
function slider_submit() {
	$("#question_title").fadeOut("slow", function() {
		$("#question_title").html("Results...");
		$("#question_title").fadeIn("slow");
	});
	
	$("#question_content").fadeOut("slow", function() {
		$("#question_content").css('font-size', '13px');
		$("#question_content").css('margin-top', '34px');
		$("#question").animate({ width: '300px'}, "slow", function(){
			$("#question_content").html("A PWC Study conducted in 2008 found that satisfaction with financial performance is only slightly above average.<br /><br />Want <span class='stratafin'>StrataFin</span> to help you position your business  in today's market?<br /><br /><a href='contact-us.php'>Contact us now...</a>");
			$("#question_content").fadeIn("slow");
		});
		
	});
	
}
