
$(document).ready(function(){
	jQuery('.csc-textpic-caption').each(function(){
		if (this.innerHTML == 'hide') {
			jQuery(this).parent().parent().parent().parent().hide();
			
		}
		//$(this).parent().hide();
	});
	
	//var picClass = '.show_picture';
	
	jQuery('img[alt^=show]').each(function() {
		$(this).mouseover(function() {
			var altTag = this.alt;
			//alert(altTag);
			if (/^show/.test(altTag)) {
				var showTagID = /\d+/i.exec(altTag);
				var showPicDiv = jQuery('<div class="show_picture"></div>').appendTo(jQuery('#links'));
				showPicDiv.append(jQuery('#elem' + showTagID).clone().addClass('img_leftcolumn'));
				jQuery('#elem' + showTagID).show('slow');
			}
		});
		
		$(this).mouseout(function() {
			var altTag = this.alt;
			//alert(altTag);
			if (/^show/.test(altTag)) {
				var showTagID = /\d+/i.exec(altTag);
				jQuery('.show_picture').remove();
			}
		});
	});
});
