$().ready(function() {
	$(".ingress").mouseenter(function(){ $(this).animate( { backgroundColor: '#eee' }, 200);});
	$(".ingress").mouseleave(function(){ $(this).animate( { backgroundColor: '#fff' }, 100);});

	
	//	$(".ingress").click(function(){ $(".infolink").click(); });
	
	
	$(".infolink").fancybox({
	'scrolling'		: 'no',
	'titleShow'		: false,
    'autoDimensions': false,
	'width'         : 600,
	'height'        : 'auto',
	'transitionIn'	: 'elastic',
	'transitionOut'	: 'elastic',
	'speedIn'		: ($.browser.msie ? 0 : 200), 
	'speedOut'		: ($.browser.msie ? 0 : 200)
	});	
});
