var $j = jQuery.noConflict(); 
$j(function () {
     // start the ticker 
	$j('#js-news').ticker();

	// hide the release history when the page loads
	$j('#release-wrapper').css('margin-top', '-' + ($j('#release-wrapper').height() + 20) + 'px');

	// show/hide the release history on click
	$j('a[href="#release-history"]').toggle(function () {	
		$j('#release-wrapper').animate({
			marginTop: '0px'
		}, 600, 'linear');
	}, function () {
		$j('#release-wrapper').animate({
			marginTop: '-' + ($j('#release-wrapper').height() + 20) + 'px'
		}, 600, 'linear');
	});	
	
});

