if (!this.PORTFOLIO) {
    PORTFOLIO = {};
}

PORTFOLIO.app = function()
{
    return {
        init: function()
        {  
           $("#project-gallery div:first img").css("display","block");
           $("#project-gallery table tr td.thumb_image:first img").css("opacity","0.3");
		   
           $("#project-gallery table tr td.thumb_image img").click(function() {
		   	   $("#project-gallery table tr td.thumb_image img").css("opacity","1");
		   	   $(this).fadeTo('fast',0.3,function() {});
        	   var thumbid = $(this).attr("id");
        	   $("#project-gallery div img").css("display","none");
        	   $("#project-gallery div.full_image #"+thumbid).css("display","block");
           });

        }
    };   
}();

$(document).ready(function() {
});


