$(function()
{
    $("#imageOptions a").click(function()
        {
		$("#base").hide("slow"); 
        var imageSource = $(this).children("img").attr("src");
		var myRegExp = /(&width=80&height=60)/g;


		imageSource= imageSource.replace(myRegExp, "&width=700&height=500");

        $("#loader").addClass("loading");
        $("h3").remove();
          showImage(imageSource);
          return false;
        });
});

function showImage(src)
{
$("#loader img").fadeOut("normal").remove();
var largeImage = new Image();
$(largeImage).load(function()
                        {
                        $(this).hide();
                        $("#loader").append(this).removeClass("loading");
                                             
                        $(this).fadeIn("slow");              
                        });    
$(largeImage).attr("src", src);                                                                               
}



