$(document).ready( function(){
	$(".timeline_image a").click(function() {
		var elem = $(this);
		$.post( '/heroes/ajax.php', {
			action: 'hero_summary',
			hero_id: $(this).attr( 'rel' )
		}, function(tempHTML) {
			//elem.effect( "transfer", {to: $("#columnHR")}, 200 );
			$("#columnHR").html( tempHTML );
			
		});

		return false;
	})

	var cookieEnabled=(navigator.cookieEnabled)? true : false;

	//if not IE4+ nor NS6+
	if (typeof navigator.cookieEnabled=="undefined" && !cookieEnabled){
		document.cookie="testcookie";
		cookieEnabled=(document.cookie.indexOf("testcookie")!=-1)? true : false;
	}
	
	if( !cookieEnabled )
		tb_show("Enable Cookies","enable_cookies.php?TB_iframe=true&height=220&width=350&modal=true", "");
	
})
