// JavaScript Document
$(document).ready(function(){
	$(document).mousemove(function(){positionReportCard();});
	
	$('#mapArea').mouseout(function(){
		$('#reportCardv1').hide();
	});
});

function showlayer( stateName ){
	stateName = stateName.replace(' ', '_');
	stateName = stateName.replace(' ', '_');
	var html =  $('#' + stateName + 'Data').html();
	$('#reportCardContent').html(html);
	$('#reportCardv1').show();
}

function hidelayer( stateId ){
	$('#reportCardv1').hide();
}

function navigate( stateId ){
	window.location = 'view_state.php?id=' + stateId;
}

function positionReportCard(){
	var topOffset = 100;
	var leftOffset = 250;

//	// adjust if south of 300...
//	if(mouseY > 300){
//		topOffset = topOffset + 240;
//	}
//	
//	// adjust if east of 360...
//	if(mouseX > 360){
//		leftOffset = leftOffset + 220;
//	}
//	
//	if($.browser.msie){
//		topOffset = topOffset + 500;
//	}
	$('#reportCardv1').css( 'top', mouseY - topOffset );
	$('#reportCardv1').css( 'left', mouseX - leftOffset);
}

