﻿// JavaScript Document
$(document).ready(function(){
	//var para="agent=100&ran="+Math.random()*10000;	
	var para="agent=100";	
	$.ajax({url:"/admin/adforagentindex/get.php?"+para,
		type:"get",
		dataType:"html",
		data:para,
		success:function(msg){
			//bannerArr = new Array();
			if(msg.length > 0){
				arrmsg = msg.split('{*}');
				for(i=0;i<arrmsg.length;i++){
					carrmsg  = arrmsg[i].split('{,}');
					arrmsg[i]= carrmsg;
				}
				var mygallery=new simpleGallery({ wrapperid: "slider", dimensions: [980,252], imagearray:arrmsg, autoplay: [true,5000,100], persist: false, fadeduration: 1000, oninit:function(){ }, onslide:function(curslide, i){ } })
			}
		} 
	});
    /*banner*/
	
	$('.boxgrid.slidedown').hover(function(){
	$(".cover", this).stop().animate({top:'-85px'},{queue:false,duration:300});
	}, function() {
		$(".cover", this).stop().animate({top:'0px'},{queue:false,duration:300});
	});
});

