﻿   $(function(){
    $("#cp .xl").each(function(n){
    $("#cp .cpnr").hide();
    $(this).hover(
        function(){ 
                $(this).children(".cpnr").show();
            },
        function(){ 
                $(this).children(".cpnr").hide();
            })
      })
})
