window.addEvent('domready', function(){
	var nS4 = new noobSlide({
		box: $('wpSlideBox'),
		items: $$('.wpSlideEntry'),
		size: 760,
		fxOptions: {
			fps: 100,
			duration: 1000,
			transition: Fx.Transitions.Back.easeOut,
			wait: false
		},
		addButtons:{
			previous: $('prevBtn'),
			next:  $('nextBtn')
		},
		onWalk: function(currentItem){
			
		}
	});
})
function ajaxrequest(arg){
	var myRequest = new Request({
		method: 'get',
		url: 'cadmin/custom/request.php',
		onSuccess: function(txt){
			$('result').set('html', txt);
		}
	});
	myRequest.send(arg);
}
