$.noConflict(); // Do not interfere with Mootools

jQuery(function(){
	jQuery("#menu a").fancybox({
		'width':	480,
		'height':	350,
		'padding' : 0
	});
	
	jQuery('#menu a').hover(function(){
		var self = jQuery(this);
		var target = self.attr('rel');
		jQuery('#pictures li a').show();
		var all_targets = jQuery('#pictures li a:not(#'+target+')').animate({'opacity':0});
	},function(){
		
	})
	
});
