		$(function(){
			var tip_content = $('#news_b');
			var tip_box = $('#news_c');

			$('[id^=lnk_m_], [id^=lnk_p_]').
			mouseover(function(event){
				tip_content.html($('#cont_' + $(this).attr('id')).html());
				tip_box.css('display', 'block');
				tip_box.css('top', (event.pageY - 70)  + 'px');
				tip_box.css('left', (event.pageX - 255)  +'px');
			}).
			mouseout(function(event){
				tip_content.html('');
				tip_box.css('display', 'none');
			}).
			mousemove(function(event){
				tip_box.css('top', (event.pageY - 70)  + 'px');
				tip_box.css('left', (event.pageX - 255)  +'px');
			});
			$('#photo_anons').jcarousel({scroll:1});
		});