$(document).ready(function(){ 
	var myhref,mytitle,mysrc,myindex,timer,p_info,p_title;
	var myx,y,myshow,mytextshow,mytitleshow,myinfoshow;
	var myrand = new Array();
	$("#imgstore img").each(function(e){
	myhref=$(this).attr("rel");
	mytitle=$(this).attr("alt");
	mysrc=$(this).attr("src");
	p_info=$(this).attr("p_info");
	p_title=$(this).attr("p_title");
	myrand[e]='<a href='+myhref +' title=\"'+mytitle +'\"  p_title=\"<a href='+myhref +'>'+p_title +'\</a>" p_info=\"<a href='+myhref +'>'+p_info +'</a>\" ><img src='+mysrc+' class=\"ImageBorder\" id=myimg></a>';
	 	 });
myrindex=$(myrand).size();
$('#banner').hover(function(){
		clearInterval(timer);		
		},
	function(){
			myx = new Date();
//y=Math.floor(Math.random()*myrindex);
	y = myx.getSeconds()% myrindex;
	myshow=myrand[y]
	mytextshow=$(myshow).attr("title");
	mytitleshow = $(myshow).attr("p_title");
	myinfoshow = $(myshow).attr("p_info");
	
	$('#banner').animate({width: "0",height: "118"},100,function(){
$('#banner').html(myshow);
$('#banner').animate({width: "118",height: "118"},1000);});
$('#btext').animate({width: "0",height: "0"},100,function(){
$('#btext').html(mytextshow);
$('#btext').animate({width: "200",height: "20"},1000);});

$('#btitle').animate({width: "0",height: "70"},100,function(){
$('#btitle').html(mytitleshow);
$('#btitle').animate({width: "335",height: "70"},1000);});
$('#binfo').animate({width: "0",height: "80"},100,function(){
$('#binfo').html(myinfoshow);
$('#binfo').animate({width: "335",height: "80"},1000);});

		timer = setInterval(ranit,8000);

		});
ranit();

function ranit(){
myx = new Date();
y=Math.floor(Math.random()*myrindex);
	//y = myx.getSeconds()% myrindex;
myshow=myrand[y]
mytextshow=$(myshow).attr("title");
mytitleshow = $(myshow).attr("p_title");
myinfoshow = $(myshow).attr("p_info");
$('#banner').animate({width: "0",height: "120"},100,function(){
$('#banner').html(myshow);
$('#banner').animate({width: "118",height: "120"},1000);});

$('#btext').animate({width: "0",height: "0"},100,function(){
$('#btext').html(mytextshow);
$('#btext').animate({width: "200",height: "20"},1000);});

$('#btitle').animate({width: "0",height: "70"},100,function(){
$('#btitle').html(mytitleshow);
$('#btitle').animate({width: "335",height: "70"},3000);});

$('#binfo').animate({width: "0",height: "80"},100,function(){
$('#binfo').html(myinfoshow);
$('#binfo').animate({width: "335",height: "80"},3000);});

	}
timer = setInterval(ranit,8000);
	});



