$(document).ready(function(){ 
//	$("#directionsMap").append("<iframe width='425' height='425' frameborder='0' scrolling='no' marginheight='0' marginwidth='0' src='http://maps.google.com/maps?f=q&amp;source=s_q&amp;hl=en&amp;geocode=&amp;q=Uncle+Sam+Lanes,+Troy+NY&amp;sll=42.740772,-73.685904&amp;sspn=0.025278,0.066776&amp;gl=us&amp;ie=UTF8&amp;cd=1&amp;cid=1590765880591646864&amp;ll=42.742096,-73.681698&amp;spn=0.02679,0.036478&amp;z=14&amp;iwloc=A&amp;output=embed'></iframe>");	
	
	
	$("#directionsMap").append("<iframe width='425' height='425' frameborder='0' scrolling='no' marginheight='0' marginwidth='0' src='http://maps.google.com/maps?ie=UTF8&amp;q=uncle+sams+lanes+troy+ny&amp;fb=1&amp;gl=us&amp;hq=uncle+sams+lanes&amp;hnear=Troy,+NY&amp;cid=0,0,1590765880591646864&amp;t=h&amp;ll=42.734468,-73.685668&amp;spn=0.006698,0.00912&amp;z=16&amp;iwloc=A&amp;output=embed'></iframe>");
	
	
	$(".roller").hover(
		function() {  $(this).attr("src", $(this).attr("src").split(".").join("_2."));  }, 
		function() {  $(this).attr("src", $(this).attr("src").split("_2.").join("."));  }
	);
	
	$(".memberAddButton").click(function () { 
     $(this).addClass("buttonHide");
	 $(this).parent().removeClass("hideMe");
	 $(this).parent().next().children(".memberAddButton").removeClass("buttonHide");
    });



	$(".memberRemoveButton").click(function () { 
      $(this).parent().addClass("hideMe");
	  $(this).parent().next().children(".memberAddButton").addClass("buttonHide");
	  $(this).parent().children(".memberAddButton").removeClass("buttonHide");
    });


});
