	var flag = 0;
	var basePath = "/images/projects/";
	
	var imagePath = basePath + projectPath;
	function switchImage(i) {
		
	
		$('#project_image_box').css("background","url('/images/gallery_loading.gif') no-repeat center center");
	
		$('.project_image_index_active').each(function() {
			if ( $(this).attr('id') == "project_image_index_" + i ) {
			flag = 1;
			return;
			}
			$(this).removeClass('project_image_index_active');
			$(this).addClass('project_image_index');
		});
		
		if(flag == 1) {
			flag = 0;
			return;
		}
		
		$('#project_image_index_' + i).addClass('project_image_index_active');
		$('#project_image_index_' + i).removeClass('project_image_index');
		
		$("#project_image_file").fadeOut("slow",function() {loadImage(i);});
		
	}
	
	function loadImage(i) {
		$('#project_image_file').attr("src",imagePath + i + ".jpg");
		document.getElementById('project_image_file').onload = function() {
			$("#project_image_file").fadeIn("slow");
		}	
	}
