$(document).ready(function() {
	$('.rounded').corner({
		tl: { radius: 5 },
		tr: { radius: 5 },
		bl: { radius: 5 },
		br: { radius: 5 },
		antiAlias: true
	});
	
	jQuery(function($) {
		$('ul.links li').ahover({toggleEffect: 'height', moveSpeed: 200, toggleSpeed: 50, hoverEffect: function() {
			$(this)
				.css({opacity: 0.99})
				.animate({opacity: 0.5}, 750)
				.animate({opacity: 0.99}, 750)
				.dequeue();
			$(this).queue(arguments.callee);
		}});
	});
	
	$('#reco').innerfade({
		speed: 'slow',
		timeout: 8000,
		type: 'sequence',
		containerheight: '180px'
	});

});
