	$(document).ready(function() 
    { 
				$('#tabs').tabs();
				// Objection
				 
				$('.Tooltip_closeme').click(function(e) 
				{ 
					$("#PlaceClaimTooltip").hide();
					e.preventDefault();
				}); 
				
				$("#layer1").hide(); 
				$("#contribution_expl").hide();
				
				$('a#objectme').click(function(e) 
				{ 
					var pos = $(this).offset(); 
					var width = $(this).width();
					var box_height = $("#layer1").height();

					$("#layer1").css( { "left": (pos.left + width-30) + "px", "top": (pos.top - box_height+30) + "px" } );
					$("#layer1").show();
					e.preventDefault();
				}); 
				
				$('#contribution_img').click(function(e) 
				{ 
					var pos = $('#contribution_img').offset(); 
					var width = $('#contribution_img').width();
					var box_height = $("#contribution_expl").height();

					$("#contribution_expl").css( { "left": (pos.left) + "px", "top": (pos.top - box_height) + "px" } );
					$("#contribution_expl").show();
					e.preventDefault();
				}); 

				
				$('.close').click(function(e) 
				{ 
					$("#layer1").hide();
					$("#contribution_expl").hide();  
					e.preventDefault();
				}); 

				 
	});

	  window.onload = function() {
	      settings = {
	          tl: { radius: 10 },
	          tr: { radius: 10 },
	          bl: { radius: 10 },
	          br: { radius: 10 },
	          antiAlias: true,
	          autoPad: true
	      }
	      var myBoxObject = new curvyCorners(settings, "rounded");
	      myBoxObject.applyCornersToAll();
		  load();
	  }

