jQuery(document).ready(function($){
	$('#container').append( '<div id="push"><!-- --></div>' );

	jQuery('.gallery-icon a').hover( function() {
               if( $(this).find('div').length == 0 ){
                       $(this).append('<div>' + $(this).find('img').attr('alt') + '</div>');
               }
               $(this).find('div').stop(true).fadeTo('fast', 1);
       }, function () {
               $(this).find('div').stop(true).fadeTo('fast', 0);
       });
});

