// JavaScript Document

 $(document).ready(function() {
	 
	 
/////////////////////
///  catches a country link hover and adjusts the background image as necessary
/////////////////////

$(".highlight_country").hover(
  function () {
    // here is hover over
	
	// if usa
	if($(this).attr("country") == "226")
		{
		$("#world_map").css("background-position","0px -415px");	
		}
	
	// if canada
	else if($(this).attr("country") == "38")
		{
		$("#world_map").css("background-position","-850px 0px");	
		}
	
	// if mexico
	else if($(this).attr("country") == "138")
		{
		$("#world_map").css("background-position","-850px 0px");	
		}
	
	// if international
	else if($(this).attr("country") == "500")
		{
		$("#world_map").css("background-position","-850px -415px");	
		}
	
	
  }, 
  function () {
    // here is hover out
	// should just center the map back in default pos
	$("#world_map").css("background-position","0px 0px");
  }
);

	

	 
	 
	 
 }); // end doc ready
