$(document).ready(function(){
	
	$("#newswrapper").jCarouselLite({
		auto: 4000,
		speed: 2000,
		pauseOnHover: true,
		visible: 1
	});

	$('a[href^=http]').click(function(){
		window.open(this.href);
		return false;
	});

	if($.browser.msie && /6.0/.test(navigator.userAgent)){
		$('ul#menu li').hover(function(){$(this).addClass('hover')},function(){$(this).removeClass('hover')});
	}
		      
	// Fancybox: #download-manuscript
	$("a#download-manuscript").fancybox({
		'width': 400,
		'height': 370,
		'autoDimensions': false,
		'hideOnContentClick': false,
		'showNavArrows': false,
		'overlayOpacity': 0.5,
		'transitionIn': 'elastic',
	});
});