Div Redirect

Div Redirect

Hi 

Can anybody help me out for my issue, Thanks in advance for your reply and please sorry for my English

Issue

I've created singlepage website using jquery

in that A,B,C,D,E,F,G,H....these are all the div's which used

i need if i select div E, it should show the details of that, and its doing good too, but my issue is after 30 second later automatically div E should moved and DIV G should appear without click or do anything.

in simple says it should like redirecting a page, here instead page DIV should replace

j query i used is jquery.scrollTo.js

my code

$(document).ready(function() {

$('a.panel').click(function () {

$('a.panel').removeClass('selected');
$(this).addClass('selected');
current = $(this);
$('#wrapper').scrollTo($(this).attr('href'), 800);
return false;
});

$(window).resize(function () {
resizePanel();
});
 
});



Thank you