
function loadProjectHome() {

    var imagedisplay = $("img#imagehome");
    var comment = $("div#commenthome");
    
    imagedisplay.hide();
    comment.hide();
    
	imagedisplay.attr("src", "webservices/getprojectimage.php?home=true");
	imagedisplay.load(function (){
	    imagedisplay.fadeIn("slow");
	});
	comment.css("background-image", "none");
    comment.css("padding-top", "0px");
    comment.load("webservices/getprojecthome.php", '', displayImageHome);
}

function displayImageHome() {
    $('#commenthome').slideDown("slow");
}

