
function LoadThumbs(folder){
			
	$(".thumbContainer").hide();
	$("#thumb_"+folder).fadeIn("slow");
	
}

 $(document).ready(function(){
   
   /* switch background image */
    $(".thumbImage").click(function(event){
		var newPath = this.src.replace("thumbs","images");
		$("#bgImg").attr("src", newPath);
	});

	/* show/hide aboutme box */
    $("#lnkAboutMe").click(function(event){
		$("#aboutMeBox").toggle("slow");
	});	
	
	/* hide aboutme box when you click on it */
	 $("#aboutMeBox").click(function(event){
		$("#aboutMeBox").hide("slow");
	});	
	
	
	/* aboutme box hided by default */
	$("#aboutMeBox").hide();
 

 });

 
