I have a html page having a table. The table have 24 columns (representing hours of the day).I'm treating them as 4 sections with each section having six ciolumns. At a time I'm showing one section i.e initially hr0 to hr5.I have two buttons on the page, \[code\]Prev\[/code\] & \[code\]Next\[/code\]. When I click \[code\]Next\[/code\], I hide the current 6 columns & show the next 6 columns. So if current columns shown are hr0 to hr5, then I hide these columns & show columns hr6 to hr11. Opposite case for \[code\]Prev\[/code\] button click.Now I need to give flip effect to the table when I switch the columns with \[code\]Prev\[/code\] & \[code\]Next\[/code\] buttons.I saw some page flipping plugins; but what they do is they have some distinct images or divs, & they iterate through them. So I'm not able to use any of them. Any help...