$j(function() {
	$j('#main-nav ul li').hoverIntent(function() {
		$j(this)
			.addClass('hover')
			.find('ul:first').fadeIn('fast');
	}, function() {
		$j(this)
			.removeClass('hover')
			.find('ul:first').hide();
	});
	
	$j('#main-nav ul li ul li:last-child a').addClass('last');
	
	$j('#top-blocks .block').hover(function() {
		$j(this).addClass('block-hover');
	}, function() {
		$j(this).removeClass('block-hover');
	});
	
$j('#report-link').hover(function(){
$j('#freereport img').addClass('hover');
}, function() {
$j('#freereport img').removeClass('hover');
});	

$j("ul.callouts img").hover(
 function()
 {
  this.src = this.src.replace("_1","_2");
 },
 function()
 {
  this.src = this.src.replace("_2","_1");
 }
);
$j(window).bind('load', function() {
$j("img.hover").each(function() {
$j("<img/>").src(
this.src.replace(/\.(.+)$/i, "_on.$1")
);
});
});

});


