$(document).ready(function(){

	//get images in the #content
	$(".image img").each(function() {
        image = $(this);
		//image.wrap('<div class="image">');
		altText = image.attr("alt");
		image.after('<span class="alttext"><p>' + altText + '</p></span>');
		/*disabling click */ // image.click(openbox);
    });
	//$("#shadow").click(function(e) {
      //  $(this).fadeOut(400);
    //});

});
function openbox(){
	id = $(this).attr("id");
	var shadow = $("#shadow");
	shadow = shadow;
	shadow.addClass("visible");
	shadow.hide();
	shadow.animate({
		height: "toggle",
		width: "toggle",
		opacity: "toggle",
		top: 0,
		left: 0,
		complete: loadIMG(id)
	}, 400);
}
function loadIMG(){
	url = "ajaximages.html #" + id;
	$("#dropbox").load(url);
}
