var $ = jQuery;
$(document).ready(function() {

  if (document.getElementById("map")) {
    gMapLaden();
  }
  
  $("#container-home a").mouseover(function() {
	$(this).css( { cursor: "hand" } );
	
	if ($(this).attr("id") == "link-sh") {
	  $("#txt-info-sh").css( { background: "#018373" } );
	}

	else if ($(this).attr("id") == "link-kb") {
	  $("#txt-info-kb").css( { background: "#018373" } );
	}

  });
 
  $("#container-home a").mouseout(function() {
	
	if ($(this).attr("id") == "link-sh") {
	  $("#txt-info-sh").css( { background: "#ff6f00" } );
	}
	else if ($(this).attr("id") == "link-kb") {
	  $("#txt-info-kb").css( { background: "#ff6f00" } );
	}


  }); 
 
});
