/**
 * JavaScript Library
 * @date 20 Sep 2011
 */
$(function(){
	$('.external').click(function(){ window.open(this.href, '_blank'); return false; });
	$('.rollover').mouseover(function(){ $(this).attr('src', $(this).attr('src').replace('_off.', '_on.')); }).mouseout(function(){ $(this).attr('src', $(this).attr('src').replace('_on.', '_off.')); });
	$('.fade').mouseover(function(){ $(this).fadeTo(200, 0.8); }).mouseout(function(){ $(this).fadeTo(200, 1); });
	$('.blink').mouseenter(function(){ $(this).fadeTo(40, 0.4, function(){ $(this).fadeTo(800, 1); }); });
	$('img.caption').each(function(){ $(this).after('<span class="figcaption">' + $(this).attr('alt') + '</span>'); });
});
