// JavaScript Document
$(document).ready(function(){
	$('.special').hide();
	$('.special:first').show();
	$('.special').each(function() {
				if ($(this).next().length) {
					$(this).append("<a href='#' onclick='javascript:$(this).parent().hide().next().show();return false;' class='nextlink'>View Next</a> ");
				}
				if ($(this).prev().length) {
					$(this).append("<a href='#' onclick='javascript:$(this).parent().hide().prev().show();return false;' class='prevlink'>View Previous</a>");
				}
	});
   });