//var home = 'http://10.0.1.197/~mark/markforscher_com/'; 

$(document).ready(function(){

});




// --------------------------------------------------------    
// THUMBNAIL CLICK TO REPLACE IMAGE
function replaceImage(newImage,link) {     
   var output;
   
   output = '<img src="./images/'+newImage+'" />';
   
   if(link != null){
        output = '<a href="'+link+'" target="_blank">'+output+'</a>';
        };
   
   output = '<p class="project_image">'+output+'</p>';
   
   $("#content").children(".project_image").after(output).remove();
   //alert(output);
   scroll(0,0);
};







