/*This is a javascript file that contains all the functions required for the GrowJobsCT.org website to
 function properly*/
 
//Function to control the status bar messages based on rollover
function statusBar(flag){
	switch(flag){
		case 'contact':
			message='Contact GrowJobsCT';
			break;
		case 'overview':
			message='Read about GrowJobsCT including who we are and our mission';
			break;
		case 'aboard':
			message='View the GrowJobsCT advisory board. These are the people behind the scenes working hard to save CT\'s manufacturing jobs';
			break;
		case 'issues':
			message='View the issues involved with the decline in CT\'s manufacturing jobs';
			break;
		case 'links':
			message='View various links related to saving CT\'s manufacturing jobs';
			break;
		case 'news':
			message='View the latest news involving GrowJobsCT';
			break;
		case 'gallery':
			message='View the GrowJobsCT photo gallery';
			break;
		case 'resources':
			message='View the GrowJobsCT resource center';
			break;
		case 'donate':
			message='Make a donation to GrowJobsCT via credit card through our secure online payment gateway';
			break;
		case 'uhi-overview':
			message='Get a complete overview about Connecticut\'s Universal Healthcare Initiative';
			break;
		case 'uhi-news':
			message='Get the latest news on Connecticut\'s Universal Healthcare Initiative';
			break;
		case 'uhi-issues':
			message='Learn about the various issues surrounding Connecticut\'s Universal Healthcare Initiative';
			break;
		case 'uhi-legistlative':
			message='Learn about what your elected officials are doing to help make Connecticut\'s Universal Healthcare Initiative a reality';
		case 'uhi-resources':
			message='View the GrowJobsCT Universal Healthcare Initiative resource center';
			break;
		case 'uhi-links':
			message='GrowJobsCT has put together this list of links that have relevance to Connecticut\'s Universal Healthcare Initiative';
			break;
		case 'uhi-involved':
			message='Find out how you can help Connecticut\'s Universal Healthcare Initiative become successful';
			break;
		case 'involved':
			message='Find out how you can help GrowJobsCT save Connecticut\'s manufacturing jobs';
			break;
		case 'home':
			message='Return to the GrowJobsCT homepage';
			break;
	}
}

