//Load the Fading Gallery and text

function standardGallery(){
$('#bottom_contentMid img').fadeTo("slow",0.50);


$('#bottom_contentMid img').each(function(){

var mainImgSrc = $(".mainImage").attr('src');
var currentImgSrc = $(this).attr("newsrc");
var description = $(this).attr("description");
var preLoad = "http://www.onealdwych.com" + currentImgSrc;


$.preloadImages(preLoad);
$('#bottom_contentMid li.firstThumb img').fadeTo("slow",3.00);


$(this).click(function(){
$(".mainImage").fadeTo("slow", 0.05);
$('#bottom_contentMid img').fadeTo("slow",0.50);
$(this).fadeTo("slow",4.00);
$(".mainImage").queue(function(){
document.getElementById("description").innerHTML=description;
$(this).attr("src",currentImgSrc);
$(".mainImage").dequeue();
});
$(".mainImage").fadeTo("slow", 1.00);

return false;
});




});
}


