// JavaScript Document
$(function() {
	try {
		$(".othernews").bind('mouseover',function() {
																						$("#" + this.id + "_intro").css({display:'block'});
																						});
		$(".othernews").bind('mouseout',function() {
																						$("#" + this.id + "_intro").css({display:'none'});
																						});
	
			$('#slideshow').cycle({ 
				prev:   '#prev', 
				next:   '#next', 
				timeout: 0,
				before: onBefore 
			});
			
			function onBefore() { 
				$('#title') 
						.html(this.alt); 
			}; 
	} catch (e) {
		//ignore
	}
});
