// JavaScript Document

$(document).ready(function(){
	/* Make thumb title text appear below the image area */
	$('div.thumbs a').hover(
		function(){ // Mouseover Scripts
			$('#rolloverText').html($(this).attr('title'));
		},function(){ // Mouseout Scripts
			$('#rolloverText').html('&nbsp;');
		}
	);
	
	
	$('div.caseimages a').hover(
		function(){ // Mouseover Scripts
			$('#caseInstructions').html($(this).attr('title'));
		},function(){ // Mouseout Scripts
			$('#caseInstructions').html('Select a project above');
		}
	);
	
	$('div.caseimages area').hover(
		function(){ // Mouseover Scripts
			$('#caseInstructions').html($(this).attr('title'));
		},function(){ // Mouseout Scripts
			$('#caseInstructions').html('Select a project above');
		}
	);
	
});


