// JavaScript Document
$(document).ready(function(){
//$("a").hide();
     
	 $(function(){
        $('#checks label').each(function(){
          $(this).append("<blockquote>"+this.title+"</blockquote>")
          this.title=''
        })
        
		$('#checks label').hover(function() {
          $(this).children().fadeIn()
       
	   },function(){
          $(this).children().hide()
        })
		
      })


})