/**
 * @author Joe McCann | subPrint Interactive | subprint.com
 */
$(function(){
    var $response = $('#response');
    
    $('#noAttr').click(function(){
        $response.append('<p id="myParagraph"/>');
        $('#myParagraph').text('Some Text');
        return false;
    });
    
    $('#withAttr').click(function(){
        $('<p/>').attr('id', 'myParagraph').appendTo($response);
        $('#myParagraph').text('Some Text');
        return false;
    });
    
    $('#clear').click(function(){
        var children = $response.children();
        $.each(children, function(i){
            delete children[i].parentNode.removeChild(children[i]);
        });
        return false;
    });
    
	pageTracker = _gat._getTracker("UA-3312370-2");
	pageTracker._trackPageview();
	
});
