var currentProj = 'project_1';
var ready2fade = true;
$('.hideProjectClass').fadeOut(1);
$(document).ready(function() {
	//
	
	$('a.toggle').mouseover(function() {
		var showThis = $(this).attr('id');
		showThis = showThis.replace("thumb_","project_");
		if(showThis != currentProj) {
			ready2fade = false;
			hideAllExcept(showThis);
			
		}
	});
	
	//$('a.toggle').mouseleave(function() { stop(true); });
	
});

function hideAllExcept(showThis) {
	//alert('#'+showThis);
	
	$('#toggleThis .project_block').fadeOut(250, function() {
		currentProj = showThis;
		ready2fade = true;
	});
	$('#'+showThis).fadeIn(250);
}