<?php function nextSlide(current_id,next_id) { $("#"+current_id).hide("fast"); $("#"+next_id).show("fast");} function prevSlide(prev_id,current_id) { $("#"+current_id).hide("fast"); $("#"+prev_id).show("fast");} ?>