function nextImage (direction) { if (direction == 'left') { var c = $('#carraigeImg > img:not(:first)').filter(function() { return ($(this).css('display') != 'none') }).hide().prev().show(); if (typeof(c.prev().attr('src')) != 'string') { $('#rayLeft').find('img').attr('src', '/img/smallRayLeftNot.png'); $('#rayRight').find('img').attr('src', 'img/smallRayRight.png'); } else { $('#rayRight').find('img').attr('src', 'img/smallRayRight.png'); $('#rayLeft').find('img').attr('src', 'img/smallRayLeft.png'); } } else { var c = $('#carraigeImg > img:not(:last)').filter(function() { return ($(this).css('display') != 'none') }).hide().next().show(); if (typeof(c.next().attr('src')) != 'string') { $('#rayRight').find('img').attr('src', '/img/smallRayRightNot.png'); $('#rayLeft').find('img').attr('src', 'img/smallRayLeft.png'); } else { $('#rayRight').find('img').attr('src', 'img/smallRayRight.png'); $('#rayLeft').find('img').attr('src', 'img/smallRayLeft.png'); } } }