$(document).ready(function(){
	
	//$("#bnr_1").show("fast");
	
	/*animationTime = 1000;
	setTimeout ("bnr_change(1);", animationTime);*/
	
	
	$('div.banners').slideshow({
		playframe:false,		
		width:500,      // width in px
		height:270,     // height in px
		effecttime:2000,
		time:5000
		}).playSlide();
});
	
	
/*

function bnr_change(curID) 
{
	var nextID = curID+1 ;
	var blength = $("div.banners div").length;
	animateBanner(curID, nextID);
	
	if (blength > 1)
	{
		if (nextID < blength) {
			setTimeout("bnr_change("+ nextID +")", animationTime);
		}
		if (nextID == blength) {
			setTimeout("bnr_change(" + curID + ")", animationTime);
			curID = 0;
		}
	}
}

function animateBanner(curID, nextID)
{
	$("#bnr_"+curID).hide('fast');
	$("#bnr_"+nextID).show('fast');
}
*/

