$(document).ready(function() {
// Question 1
$('#executiveCommittee').click(function(){
$.scrollTo('#executive_committee', {duration: 1500, onAfter:function(){
} });
});

// Question 2
$('#cityAppointments').click(function(){
$.scrollTo('#city_appointments', {duration: 1500, onAfter:function(){
} });
});

// Question 3
$('#portOfCorpusChristi').click(function(){
$.scrollTo('#port_of_corpus_christi', {duration: 1500, onAfter:function(){
} });
});

// Question 4
$('#investors').click(function(){
$.scrollTo('#investors_pics', {duration: 1500, onAfter:function(){
} });
});

// Question 5
$('#county').click(function(){
$.scrollTo('#county_pics', {duration: 1500, onAfter:function(){
} });
});

// Question 6
$('#higherEducation').click(function(){
$.scrollTo('#higher_education', {duration: 1500, onAfter:function(){
} });
});

// Question 7
$('#communityRepresentatives').click(function(){
$.scrollTo('#community_representatives', {duration: 1500, onAfter:function(){
} });
});

// Question 8
$('#ccredcStaff').click(function(){
$.scrollTo('#ccredc_staff', {duration: 1500, onAfter:function(){
} });
});

// Go To TOP

$.localScroll();
		var scrollDiv=$('#toTop');
		scrollDiv.hide();
		if($(window).scrollTop()>="1380"){
			scrollDiv.fadeIn("slow")
		}
		$(window).scroll(function(){
			if($(window).scrollTop()<="1380"){
				$(scrollDiv).fadeOut("slow")
			}else{
				$(scrollDiv).fadeIn("slow")
				}
			});

});