$(document).ready(function() 
{
		
	$("#thumbsContainer img").mouseover(function()
	{
		var imageNum = this.id.substr(12, 1);
		var type = $(this).attr("class");		
		var newPath = "../files/gallery/" +  gallerySettings[type]["path"] + "/large/" + gallerySettings[type]["id"] + "_" + imageNum + "." + gallerySettings[type]["exts"][imageNum];	
		$("#galleryLarge_" + gallerySettings[type]["path"]).attr("src", newPath);		
		
	});
	
}); 