Cufon.replace('h1, h2, h3', {
		hover: true
	});
	
var $j = jQuery.noConflict();

$j(document).ready(function() {
	//var leftheight = $j('#leftCol').height()
	//$j('#sidebar').height(leftheight);

	
	$j('#imagemap area').mouseover(function(){
		var newsrc = $j(this).attr('alt');
		//console.log(newsrc);
		
		$j('#mapright img').attr('src', newsrc);
		
		return false;
	})

});