﻿ $(document).ready(function(){ 
          //number of paragraphs up from bottom 
        //change this so we just have a position of 1 
        //rename variable so it makes sense 
        var BlockQuotePosFromTop=0 
       
        //position is going to be the last paragraph from the end, so n-1 
        var BlockQuotePos=BlockQuotePosFromTop 
        //alert(RADTextPos) 

        $("div#productcontents p").eq(BlockQuotePos).prepend($("#foo"));     
      }); 
