$(document).ready(function(){		
			// Roller button blog
			position = $(".button-1").position();
			width = $(".button-1").width()
			height = $(".button-1").height()	
			
			$(".button-1").hover(function(){
										  // Over
										$("#msg-1").fadeIn("slow");
										$("#msg-1").css("left",position.left+20);
										$("#msg-1").css("top",position.top+height+10);
										  
										  },
										  // out
								 function(){
									 
										$("#msg-1").fadeOut("slow");
																	 
									 
									 	
									 
									      }
										  
										  );
						  }

)
