$(document).ready(function(){
  
/*toggle point descriptions*/
	$("li#point1").hover(
		function () {$(this).fadeTo("fast", 1);$("#point1-info").fadeIn("fast");},
		function () {$(this).fadeTo("fast", 0.4);$("#point1-info").fadeOut("fast");});
	
	$("li#point2").hover(
		function () {$(this).fadeTo("fast", 1);$("#point2-info").fadeIn("fast");},
		function () {$(this).fadeTo("fast", 0.4);$("#point2-info").fadeOut("fast");});
    
	$("li#point3").hover(
		function () {$(this).fadeTo("fast", 1);$("#point3-info").fadeIn("fast");},
		function () {$(this).fadeTo("fast", 0.4);$("#point3-info").fadeOut("fast");});
	
	$("li#point4").hover(
		function () {$(this).fadeTo("fast", 1);$("#point4-info").fadeIn("fast");},
		function () {$(this).fadeTo("fast", 0.4);$("#point4-info").fadeOut("fast");});	
	
	$("li#point5").hover(
		function () {$(this).fadeTo("fast", 1);$("#point5-info").fadeIn("fast");},
		function () {$(this).fadeTo("fast", 0.4);$("#point5-info").fadeOut("fast");});

$("li#point6").hover(
		function () {$(this).fadeTo("fast", 1);$("#point6-info").fadeIn("fast");},
		function () {$(this).fadeTo("fast", 0.4);$("#point6-info").fadeOut("fast");});

/*fade points*/
	$("ul#image-callouts li.points").fadeTo("slow", 0.4);

/*end*/});