﻿$(function() {
	
	$("#project-screen-1").mouseover(function() {
	    HideScreen();
	    $("#project-image").toggle('slide',{},300,ShowText);
		return false;
	});
	
	$("#project-screen-2").mouseout(function() {
	    HideText();
	    $("#project-image").toggle('slide',{},300,ShowScreen);
	    return false;
	});
	
	function ShowText(){ 
	    document.getElementById('project-screen-2').style.display = 'inline';
	    document.getElementById('project-text').style.display = 'block';
	};
	
	function HideText(){ 
	    document.getElementById('project-screen-2').style.display = 'none'; 
	    document.getElementById('project-text').style.display = 'none'; 
	};
	
	function ShowScreen() { 
	    document.getElementById('project-screen-1').style.display = 'inline'; 
	};
	
	function HideScreen() { 
	    document.getElementById('project-screen-1').style.display = 'none'; 
	};
	
});