jQuery(function($){$(document).ready(function(){

$('.rotateme,.ban').cycle({fx:'fade',speed:2500,timeout:3000,next:'#arrowright',prev:'#arrowleft',sync:1,pause:1});

	$(".rotateme li a").click(function(){
	var curid = $(this).attr('id');
	$('#box'+curid).fadeIn('slow');
	return false;
	});

	$(".ban li a").click(function(){
	var curid = $(this).attr('id');
	$('#box'+curid).fadeIn('slow');
	$('.noclick').fadeIn('slow');
	return false;
	});

$('.close').click(function() {$(this).parent().fadeOut("fast");});


return true;
});});


