$(function() {
	/**
	 * Fading banners
	 */
	$('.banner').each(function() {
		var b = $(this);
		var i = b.find('img');
		b.empty().append(i).cycle();
	});
	
	/**
	 * Fancybox on content
	 */
	$('.content a[href$=".gif"], .content a[href$=".jpg"], .content a[href=".png"]').fancybox();
});
