jQuery(document).ready(function(){
	
	jQuery('a[rel="lightbox"]').fancybox();
	
	jQuery('ul#navigation li.inactive').hover(function(){
		jQuery(this).children('span').stop(true, true);
		jQuery(this).children('span').fadeTo(300,1);
	},function(){
		jQuery(this).children('span').stop(true, true);
		jQuery(this).children('span').fadeTo(500,0);
	});
	
});
