/*
 * Setting JQuery non conflict mode
 */
var $j = jQuery.noConflict();
		
$j(document).ready(function() { 
	
	$j('#newsbox-in ul').hide();
	$j('#newsbox-in h3').mouseover(function() {
		$j(this).css('cursor', 'pointer');
	}		
	);
	
	$j('#newsbox-in h3').click(function() {
		$j(this).next().toggle("fast");		
	}
	);

$j('#newsbox-in h3').hover(function() {
		$j(this).css('color', '#E3001E');
			}, function() {
					$j(this).css('color', '#6B6B6B');
						}
							
								);

});

