$(document).ready(function() {
	$("#slider").easySlider({
		controlsBefore:	'<p id="controls">',
		controlsAfter:	'</p>',
		auto: false, 
		continuous: true,
		prevId: 'prevBtn',
		nextId: 'nextBtn'	
	});
	
	$("#haber").easySlider({
		controlsBefore:	'<p id="controls">',
		controlsAfter:	'</p>',
		auto: false,
		vertical:true, 
		continuous: true,
		prevId: 'upBtn',
		nextId: 'downBtn'	
	});
	
	$('.faaliyetler ul li').each(function(index){
		$(this).css('margin-left', (60 - (25 * index)));
	})
	
	$(".interaktif .button ul li").hover(
		function () {
			$(this).animate({marginLeft:30}, {duration: 300});
		},
		function () {
			$(this).animate({marginLeft:0}, {duration: 300});
		}
	);
});
