	var currentBlock = "";

	 $(document).ready(function()
    {
		
		
		$(".controller").hover(function(){
			currentBlock = $(this).attr("id").substring(11, $(this).attr("id").length);
			
			$("#" + currentBlock + "-editor").css({'top':$(this).offset().top});			
			$("#" + currentBlock + "-editor").css({'left':$(this).offset().left});
			
			$("#" + currentBlock + "-editor").show();  
		}, function(){
			$("#" + currentBlock + "-editor").hide();    
		})

 	});
    
