/*
 * blamShow v1.0.5
 *
 * Copyright (c) 2011 Thomas Kyte
 * Licensed under the GPL licenses.
 * http://www.gnu.org/copyleft/gpl.html
 *
 * Operate the Next and Previous Buttons by referring to slideFade('Next'); and slideFade('Prev');
 *
 * Change the height value in your blamshow CSS.
 */
function slideFade(az){var bz=$("#blamshow IMG.active");if(bz.length==0)bz=$("#blamshow IMG:last");if(az=="Prev"){$next=bz.prev().length?bz.prev():$("#blamshow IMG:last")}else{$next=bz.next().length?bz.next():$("#blamshow IMG:first")}bz.addClass("last-active");$next.css({opacity:0}).addClass("active").animate({opacity:1},1e3,function(){bz.removeClass("active last-active")});clearTimeout(theTimeout);theTimeout=setTimeout("slideFade('Next')",5e3)}var mode="";var $next;var theTimeout;
