



$(document).ready(function(){
						   
		$('.areaYes').hide();
		$('.areaNo').hide();						   

        $("#theSelect").change(function(){
			var value = $(this).val();
			var theDiv = $("." + value);
			$('.result').hide();
			$(theDiv).show(300);

        });
        
        
$('#mainContent .slideshow').innerfade({
		speed: 1250,
		timeout: 2000,
		containerheight: '230px'
	});
        

});


