$(function(){ 
	$('a.item').mouseenter(function(){
		$(this).find('.hover').stop(true, true).fadeIn(200)
	})
	
	$('a.item').mouseleave(function(){
		$(this).find('.hover').stop(true, true).fadeOut(200)
	})
	
	$('a').bind('touchend', function(e) {
	    var el = $(this);
	    var link = el.attr('href');
	    window.location = link;
	});

	
	if($('#fotos').length){
		$('#fotos').cycle({
			speed: 'slow',
			fx: 'fade',
			timeout: 0,
			pause: 0,
			next: '.volgende, #fotos', 
			prev: '.vorige'
		});
	}
});


