$(document).ready(function(){
	//Hide div w/id extra
 // $("#photobooksdownload").css("display","none");	
 // $("#calendardownload").css("display","none");
		// Add onclick handler to checkbox w/id checkme
    $("#checkmephoto").click(function(){
    	// If checked
      if (!$("#checkmephoto").is(":checked"))
      	{
         //show the hidden div
         $("#photobooksdownload").hide("fast");
        }
     	else
        {     
         //otherwise, hide it
         $("#photobooksdownload").show("fast");
        }
    });

    $("#checkmecal").click(function(){
    	// If checked
      if (!$("#checkmecal").is(":checked"))
      	{
         //show the hidden div
         $("#calendardownload").hide("fast");
        }
     	else
        {     
         //otherwise, hide it
         $("#calendardownload").show("fast");
        }
    });
   
});
 
