Errors found while checking this document as XHTML 1.0 Transitional!

Result: 101 Errors, 113 warning(s)
:
Modified:(undefined)
Server:Apache
Size:(undefined)
Content-Type:text/html
: utf-8
: XHTML 1.0 Transitional
Root Element: html
Root Namespace: http://www.w3.org/1999/xhtml
Options

Help on the options is available.

↑ Top

Validation Output: 101 Errors

  1. Warning Line 70, Column 7: S separator in comment declaration
    <!---- Pinterest Image Pin included this line ------->

    This may happen if you have consecutive comments but did not close one of them properly. The proper syntax for comments is <!-- my comment -->.

  2. Error Line 70, Column 8: invalid comment declaration: found name start character outside comment but inside comment declaration
    <!---- Pinterest Image Pin included this line ------->

  3. Info Line 70, Column 1: comment declaration started here
    <!---- Pinterest Image Pin included this line ------->
  4. Error Line 70, Column 9: character data is not allowed here
    <!---- Pinterest Image Pin included this line ------->

    You have used character data somewhere it is not permitted to appear. Mistakes that can cause this error include:

    • putting text directly in the body of the document without wrapping it in a container element (such as a <p>aragraph</p>), or
    • forgetting to quote an attribute value (where characters such as "%" and "/" are common, but cannot appear without surrounding quotes), or
    • using XHTML-style self-closing tags (such as <meta ... />) in HTML 4.01 or earlier. To fix, remove the extra slash ('/') character. For more information about the reasons for this, see Empty elements in SGML, HTML, XML, and XHTML.
  5. Warning Line 71, Column 7: S separator in comment declaration
    <!---- Shane Jones - www.shanejones.co.uk -->

    This may happen if you have consecutive comments but did not close one of them properly. The proper syntax for comments is <!-- my comment -->.

  6. Error Line 71, Column 8: invalid comment declaration: found name start character outside comment but inside comment declaration
    <!---- Shane Jones - www.shanejones.co.uk -->

  7. Info Line 71, Column 1: comment declaration started here
    <!---- Shane Jones - www.shanejones.co.uk -->
  8. Warning Line 73, Column 7: S separator in comment declaration
    <!---- END Pinterest Image Pin -------------->

    This may happen if you have consecutive comments but did not close one of them properly. The proper syntax for comments is <!-- my comment -->.

  9. Error Line 73, Column 8: invalid comment declaration: found name start character outside comment but inside comment declaration
    <!---- END Pinterest Image Pin -------------->

  10. Info Line 73, Column 1: comment declaration started here
    <!---- END Pinterest Image Pin -------------->
  11. Warning Line 79, Column 80: cannot generate system identifier for general entity "v"
    …com/anywhere.js?id=4jdTnnYfGDxXDy4GD6r4Rg&v=1" type="text/javascript"></script>

    An entity reference was found in the document, but there is no reference by that name defined. Often this is caused by misspelling the reference name, unencoded ampersands, or by leaving off the trailing semicolon (;). The most common cause of this error is unencoded ampersands in URLs as described by the WDG in "Ampersands in URLs".

    Entity references start with an ampersand (&) and end with a semicolon (;). If you want to use a literal ampersand in your document you must encode it as "&amp;" (even inside URLs!). Be careful to end entity references with a semicolon or your entity reference may get interpreted in connection with the following text. Also keep in mind that named entity references are case-sensitive; &Aelig; and &aelig; are different characters.

    If this error appears in some markup generated by PHP's session handling code, this article has explanations and solutions to your problem.

    Note that in most documents, errors related to entity references will trigger up to 5 separate messages from the Validator. Usually these will all disappear when the original problem is fixed.

  12. Error Line 79, Column 80: general entity "v" not defined and no default entity
    …com/anywhere.js?id=4jdTnnYfGDxXDy4GD6r4Rg&v=1" type="text/javascript"></script>

    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.

  13. Warning Line 79, Column 81: reference not terminated by REFC delimiter
    …com/anywhere.js?id=4jdTnnYfGDxXDy4GD6r4Rg&v=1" type="text/javascript"></script>

    If you meant to include an entity that starts with "&", then you should terminate it with ";". Another reason for this error message is that you inadvertently created an entity by failing to escape an "&" character just before this text.

  14. Warning Line 79, Column 81: reference to external entity in attribute value
    …com/anywhere.js?id=4jdTnnYfGDxXDy4GD6r4Rg&v=1" type="text/javascript"></script>

    This is generally the sign of an ampersand that was not properly escaped for inclusion in an attribute, in a href for example. You will need to escape all instances of '&' into '&amp;'.

  15. Error Line 79, Column 81: reference to entity "v" for which no system identifier could be generated
    …com/anywhere.js?id=4jdTnnYfGDxXDy4GD6r4Rg&v=1" type="text/javascript"></script>

    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.

  16. Info Line 79, Column 79: entity was defined here
    …com/anywhere.js?id=4jdTnnYfGDxXDy4GD6r4Rg&v=1" type="text/javascript"></script>
  17. Error Line 377, Column 27: document type does not allow element "style" here
        <style type="text/css">

    The element named above was found in a context where it is not allowed. This could mean that you have incorrectly nested elements -- such as a "style" element in the "body" section instead of inside "head" -- or two elements that overlap (which is not allowed).

    One common cause for this error is the use of XHTML syntax in HTML documents. Due to HTML's rules of implicitly closed elements, this error can create cascading effects. For instance, using XHTML's "self-closing" tags for "meta" and "link" in the "head" section of a HTML document may cause the parser to infer the end of the "head" section and the beginning of the "body" section (where "link" and "meta" are not allowed; hence the reported error).

  18. Warning Line 445, Column 309: cannot generate system identifier for general entity "h"
    …wp-content/uploads/2012/04/photo1.jpg&h=100&w=&zc=1" alt="Pumpkin Pancake Reci…

    An entity reference was found in the document, but there is no reference by that name defined. Often this is caused by misspelling the reference name, unencoded ampersands, or by leaving off the trailing semicolon (;). The most common cause of this error is unencoded ampersands in URLs as described by the WDG in "Ampersands in URLs".

    Entity references start with an ampersand (&) and end with a semicolon (;). If you want to use a literal ampersand in your document you must encode it as "&amp;" (even inside URLs!). Be careful to end entity references with a semicolon or your entity reference may get interpreted in connection with the following text. Also keep in mind that named entity references are case-sensitive; &Aelig; and &aelig; are different characters.

    If this error appears in some markup generated by PHP's session handling code, this article has explanations and solutions to your problem.

    Note that in most documents, errors related to entity references will trigger up to 5 separate messages from the Validator. Usually these will all disappear when the original problem is fixed.

  19. Error Line 445, Column 309: general entity "h" not defined and no default entity
    …wp-content/uploads/2012/04/photo1.jpg&h=100&w=&zc=1" alt="Pumpkin Pancake Reci…

    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.

  20. Warning Line 445, Column 310: reference not terminated by REFC delimiter
    …p-content/uploads/2012/04/photo1.jpg&h=100&w=&zc=1" alt="Pumpkin Pancake Recip…

    If you meant to include an entity that starts with "&", then you should terminate it with ";". Another reason for this error message is that you inadvertently created an entity by failing to escape an "&" character just before this text.

  21. Warning Line 445, Column 310: reference to external entity in attribute value
    …p-content/uploads/2012/04/photo1.jpg&h=100&w=&zc=1" alt="Pumpkin Pancake Recip…

    This is generally the sign of an ampersand that was not properly escaped for inclusion in an attribute, in a href for example. You will need to escape all instances of '&' into '&amp;'.

  22. Error Line 445, Column 310: reference to entity "h" for which no system identifier could be generated
    …p-content/uploads/2012/04/photo1.jpg&h=100&w=&zc=1" alt="Pumpkin Pancake Recip…

    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.

  23. Info Line 445, Column 308: entity was defined here
    …/wp-content/uploads/2012/04/photo1.jpg&h=100&w=&zc=1" alt="Pumpkin Pancake Rec…
  24. Warning Line 445, Column 315: cannot generate system identifier for general entity "w"
    …tent/uploads/2012/04/photo1.jpg&h=100&w=&zc=1" alt="Pumpkin Pancake Recipe" />…

    An entity reference was found in the document, but there is no reference by that name defined. Often this is caused by misspelling the reference name, unencoded ampersands, or by leaving off the trailing semicolon (;). The most common cause of this error is unencoded ampersands in URLs as described by the WDG in "Ampersands in URLs".

    Entity references start with an ampersand (&) and end with a semicolon (;). If you want to use a literal ampersand in your document you must encode it as "&amp;" (even inside URLs!). Be careful to end entity references with a semicolon or your entity reference may get interpreted in connection with the following text. Also keep in mind that named entity references are case-sensitive; &Aelig; and &aelig; are different characters.

    If this error appears in some markup generated by PHP's session handling code, this article has explanations and solutions to your problem.

    Note that in most documents, errors related to entity references will trigger up to 5 separate messages from the Validator. Usually these will all disappear when the original problem is fixed.

  25. Error Line 445, Column 315: general entity "w" not defined and no default entity
    …tent/uploads/2012/04/photo1.jpg&h=100&w=&zc=1" alt="Pumpkin Pancake Recipe" />…

    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.

  26. Warning Line 445, Column 316: reference not terminated by REFC delimiter
    …ent/uploads/2012/04/photo1.jpg&h=100&w=&zc=1" alt="Pumpkin Pancake Recipe" /><…

    If you meant to include an entity that starts with "&", then you should terminate it with ";". Another reason for this error message is that you inadvertently created an entity by failing to escape an "&" character just before this text.

  27. Warning Line 445, Column 316: reference to external entity in attribute value
    …ent/uploads/2012/04/photo1.jpg&h=100&w=&zc=1" alt="Pumpkin Pancake Recipe" /><…

    This is generally the sign of an ampersand that was not properly escaped for inclusion in an attribute, in a href for example. You will need to escape all instances of '&' into '&amp;'.

  28. Error Line 445, Column 316: reference to entity "w" for which no system identifier could be generated
    …ent/uploads/2012/04/photo1.jpg&h=100&w=&zc=1" alt="Pumpkin Pancake Recipe" /><…

    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.

  29. Info Line 445, Column 314: entity was defined here
    …ntent/uploads/2012/04/photo1.jpg&h=100&w=&zc=1" alt="Pumpkin Pancake Recipe" /…
  30. Warning Line 445, Column 318: cannot generate system identifier for general entity "zc"
    …t/uploads/2012/04/photo1.jpg&h=100&w=&zc=1" alt="Pumpkin Pancake Recipe" /></a…

    An entity reference was found in the document, but there is no reference by that name defined. Often this is caused by misspelling the reference name, unencoded ampersands, or by leaving off the trailing semicolon (;). The most common cause of this error is unencoded ampersands in URLs as described by the WDG in "Ampersands in URLs".

    Entity references start with an ampersand (&) and end with a semicolon (;). If you want to use a literal ampersand in your document you must encode it as "&amp;" (even inside URLs!). Be careful to end entity references with a semicolon or your entity reference may get interpreted in connection with the following text. Also keep in mind that named entity references are case-sensitive; &Aelig; and &aelig; are different characters.

    If this error appears in some markup generated by PHP's session handling code, this article has explanations and solutions to your problem.

    Note that in most documents, errors related to entity references will trigger up to 5 separate messages from the Validator. Usually these will all disappear when the original problem is fixed.

  31. Error Line 445, Column 318: general entity "zc" not defined and no default entity
    …t/uploads/2012/04/photo1.jpg&h=100&w=&zc=1" alt="Pumpkin Pancake Recipe" /></a…

    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.

  32. Warning Line 445, Column 320: reference not terminated by REFC delimiter
    …/uploads/2012/04/photo1.jpg&h=100&w=&zc=1" alt="Pumpkin Pancake Recipe" /></a>	

    If you meant to include an entity that starts with "&", then you should terminate it with ";". Another reason for this error message is that you inadvertently created an entity by failing to escape an "&" character just before this text.

  33. Warning Line 445, Column 320: reference to external entity in attribute value
    …/uploads/2012/04/photo1.jpg&h=100&w=&zc=1" alt="Pumpkin Pancake Recipe" /></a>	

    This is generally the sign of an ampersand that was not properly escaped for inclusion in an attribute, in a href for example. You will need to escape all instances of '&' into '&amp;'.

  34. Error Line 445, Column 320: reference to entity "zc" for which no system identifier could be generated
    …/uploads/2012/04/photo1.jpg&h=100&w=&zc=1" alt="Pumpkin Pancake Recipe" /></a>	

    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.

  35. Info Line 445, Column 317: entity was defined here
    …nt/uploads/2012/04/photo1.jpg&h=100&w=&zc=1" alt="Pumpkin Pancake Recipe" /></…
  36. Warning Line 454, Column 307: reference not terminated by REFC delimiter
    …p-content/uploads/2012/03/photo2.jpg&h=100&w=&zc=1" alt="Ceasar Salad Recipe" …

    If you meant to include an entity that starts with "&", then you should terminate it with ";". Another reason for this error message is that you inadvertently created an entity by failing to escape an "&" character just before this text.

  37. Warning Line 454, Column 307: reference to external entity in attribute value
    …p-content/uploads/2012/03/photo2.jpg&h=100&w=&zc=1" alt="Ceasar Salad Recipe" …

    This is generally the sign of an ampersand that was not properly escaped for inclusion in an attribute, in a href for example. You will need to escape all instances of '&' into '&amp;'.

  38. Error Line 454, Column 307: reference to entity "h" for which no system identifier could be generated
    …p-content/uploads/2012/03/photo2.jpg&h=100&w=&zc=1" alt="Ceasar Salad Recipe" …

    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.

  39. Info Line 445, Column 308: entity was defined here
    …/wp-content/uploads/2012/04/photo1.jpg&h=100&w=&zc=1" alt="Pumpkin Pancake Rec…
  40. Warning Line 454, Column 313: reference not terminated by REFC delimiter
    …ent/uploads/2012/03/photo2.jpg&h=100&w=&zc=1" alt="Ceasar Salad Recipe" /></a>…

    If you meant to include an entity that starts with "&", then you should terminate it with ";". Another reason for this error message is that you inadvertently created an entity by failing to escape an "&" character just before this text.

  41. Warning Line 454, Column 313: reference to external entity in attribute value
    …ent/uploads/2012/03/photo2.jpg&h=100&w=&zc=1" alt="Ceasar Salad Recipe" /></a>…

    This is generally the sign of an ampersand that was not properly escaped for inclusion in an attribute, in a href for example. You will need to escape all instances of '&' into '&amp;'.

  42. Error Line 454, Column 313: reference to entity "w" for which no system identifier could be generated
    …ent/uploads/2012/03/photo2.jpg&h=100&w=&zc=1" alt="Ceasar Salad Recipe" /></a>…

    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.

  43. Info Line 445, Column 314: entity was defined here
    …ntent/uploads/2012/04/photo1.jpg&h=100&w=&zc=1" alt="Pumpkin Pancake Recipe" /…
  44. Warning Line 454, Column 317: reference not terminated by REFC delimiter
    …ent/uploads/2012/03/photo2.jpg&h=100&w=&zc=1" alt="Ceasar Salad Recipe" /></a>	

    If you meant to include an entity that starts with "&", then you should terminate it with ";". Another reason for this error message is that you inadvertently created an entity by failing to escape an "&" character just before this text.

  45. Warning Line 454, Column 317: reference to external entity in attribute value
    …ent/uploads/2012/03/photo2.jpg&h=100&w=&zc=1" alt="Ceasar Salad Recipe" /></a>	

    This is generally the sign of an ampersand that was not properly escaped for inclusion in an attribute, in a href for example. You will need to escape all instances of '&' into '&amp;'.

  46. Error Line 454, Column 317: reference to entity "zc" for which no system identifier could be generated
    …ent/uploads/2012/03/photo2.jpg&h=100&w=&zc=1" alt="Ceasar Salad Recipe" /></a>	

    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.

  47. Info Line 445, Column 317: entity was defined here
    …nt/uploads/2012/04/photo1.jpg&h=100&w=&zc=1" alt="Pumpkin Pancake Recipe" /></…
  48. Warning Line 463, Column 321: reference not terminated by REFC delimiter
    …p-content/uploads/2012/02/photo1.jpg&h=100&w=&zc=1" alt="Homemade Facial Mask …

    If you meant to include an entity that starts with "&", then you should terminate it with ";". Another reason for this error message is that you inadvertently created an entity by failing to escape an "&" character just before this text.

  49. Warning Line 463, Column 321: reference to external entity in attribute value
    …p-content/uploads/2012/02/photo1.jpg&h=100&w=&zc=1" alt="Homemade Facial Mask …

    This is generally the sign of an ampersand that was not properly escaped for inclusion in an attribute, in a href for example. You will need to escape all instances of '&' into '&amp;'.

  50. Error Line 463, Column 321: reference to entity "h" for which no system identifier could be generated
    …p-content/uploads/2012/02/photo1.jpg&h=100&w=&zc=1" alt="Homemade Facial Mask …

    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.

  51. Info Line 445, Column 308: entity was defined here
    …/wp-content/uploads/2012/04/photo1.jpg&h=100&w=&zc=1" alt="Pumpkin Pancake Rec…
  52. Warning Line 463, Column 327: reference not terminated by REFC delimiter
    …ent/uploads/2012/02/photo1.jpg&h=100&w=&zc=1" alt="Homemade Facial Mask for Dr…

    If you meant to include an entity that starts with "&", then you should terminate it with ";". Another reason for this error message is that you inadvertently created an entity by failing to escape an "&" character just before this text.

  53. Warning Line 463, Column 327: reference to external entity in attribute value
    …ent/uploads/2012/02/photo1.jpg&h=100&w=&zc=1" alt="Homemade Facial Mask for Dr…

    This is generally the sign of an ampersand that was not properly escaped for inclusion in an attribute, in a href for example. You will need to escape all instances of '&' into '&amp;'.

  54. Error Line 463, Column 327: reference to entity "w" for which no system identifier could be generated
    …ent/uploads/2012/02/photo1.jpg&h=100&w=&zc=1" alt="Homemade Facial Mask for Dr…

    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.

  55. Info Line 445, Column 314: entity was defined here
    …ntent/uploads/2012/04/photo1.jpg&h=100&w=&zc=1" alt="Pumpkin Pancake Recipe" /…
  56. Warning Line 463, Column 331: reference not terminated by REFC delimiter
    …uploads/2012/02/photo1.jpg&h=100&w=&zc=1" alt="Homemade Facial Mask for Dry Sk…

    If you meant to include an entity that starts with "&", then you should terminate it with ";". Another reason for this error message is that you inadvertently created an entity by failing to escape an "&" character just before this text.

  57. Warning Line 463, Column 331: reference to external entity in attribute value
    …uploads/2012/02/photo1.jpg&h=100&w=&zc=1" alt="Homemade Facial Mask for Dry Sk…

    This is generally the sign of an ampersand that was not properly escaped for inclusion in an attribute, in a href for example. You will need to escape all instances of '&' into '&amp;'.

  58. Error Line 463, Column 331: reference to entity "zc" for which no system identifier could be generated
    …uploads/2012/02/photo1.jpg&h=100&w=&zc=1" alt="Homemade Facial Mask for Dry Sk…

    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.

  59. Info Line 445, Column 317: entity was defined here
    …nt/uploads/2012/04/photo1.jpg&h=100&w=&zc=1" alt="Pumpkin Pancake Recipe" /></…
  60. Warning Line 473, Column 343: reference not terminated by REFC delimiter
    …content/uploads/2011/01/IMG_1454.jpg&h=100&w=&zc=1" alt="8 Simple Tips For Hos…

    If you meant to include an entity that starts with "&", then you should terminate it with ";". Another reason for this error message is that you inadvertently created an entity by failing to escape an "&" character just before this text.

  61. Warning Line 473, Column 343: reference to external entity in attribute value
    …content/uploads/2011/01/IMG_1454.jpg&h=100&w=&zc=1" alt="8 Simple Tips For Hos…

    This is generally the sign of an ampersand that was not properly escaped for inclusion in an attribute, in a href for example. You will need to escape all instances of '&' into '&amp;'.

  62. Error Line 473, Column 343: reference to entity "h" for which no system identifier could be generated
    …content/uploads/2011/01/IMG_1454.jpg&h=100&w=&zc=1" alt="8 Simple Tips For Hos…

    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.

  63. Info Line 445, Column 308: entity was defined here
    …/wp-content/uploads/2012/04/photo1.jpg&h=100&w=&zc=1" alt="Pumpkin Pancake Rec…
  64. Warning Line 473, Column 349: reference not terminated by REFC delimiter
    …t/uploads/2011/01/IMG_1454.jpg&h=100&w=&zc=1" alt="8 Simple Tips For Hosting a…

    If you meant to include an entity that starts with "&", then you should terminate it with ";". Another reason for this error message is that you inadvertently created an entity by failing to escape an "&" character just before this text.

  65. Warning Line 473, Column 349: reference to external entity in attribute value
    …t/uploads/2011/01/IMG_1454.jpg&h=100&w=&zc=1" alt="8 Simple Tips For Hosting a…

    This is generally the sign of an ampersand that was not properly escaped for inclusion in an attribute, in a href for example. You will need to escape all instances of '&' into '&amp;'.

  66. Error Line 473, Column 349: reference to entity "w" for which no system identifier could be generated
    …t/uploads/2011/01/IMG_1454.jpg&h=100&w=&zc=1" alt="8 Simple Tips For Hosting a…

    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.

  67. Info Line 445, Column 314: entity was defined here
    …ntent/uploads/2012/04/photo1.jpg&h=100&w=&zc=1" alt="Pumpkin Pancake Recipe" /…
  68. Warning Line 473, Column 353: reference not terminated by REFC delimiter
    …loads/2011/01/IMG_1454.jpg&h=100&w=&zc=1" alt="8 Simple Tips For Hosting a Hea…

    If you meant to include an entity that starts with "&", then you should terminate it with ";". Another reason for this error message is that you inadvertently created an entity by failing to escape an "&" character just before this text.

  69. Warning Line 473, Column 353: reference to external entity in attribute value
    …loads/2011/01/IMG_1454.jpg&h=100&w=&zc=1" alt="8 Simple Tips For Hosting a Hea…

    This is generally the sign of an ampersand that was not properly escaped for inclusion in an attribute, in a href for example. You will need to escape all instances of '&' into '&amp;'.

  70. Error Line 473, Column 353: reference to entity "zc" for which no system identifier could be generated
    …loads/2011/01/IMG_1454.jpg&h=100&w=&zc=1" alt="8 Simple Tips For Hosting a Hea…

    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.

  71. Info Line 445, Column 317: entity was defined here
    …nt/uploads/2012/04/photo1.jpg&h=100&w=&zc=1" alt="Pumpkin Pancake Recipe" /></…
  72. Warning Line 495, Column 341: reference not terminated by REFC delimiter
    …p-content/uploads/2012/05/photo5.jpg&h=100&w=&zc=1" alt="Key West Images:  A R…

    If you meant to include an entity that starts with "&", then you should terminate it with ";". Another reason for this error message is that you inadvertently created an entity by failing to escape an "&" character just before this text.

  73. Warning Line 495, Column 341: reference to external entity in attribute value
    …p-content/uploads/2012/05/photo5.jpg&h=100&w=&zc=1" alt="Key West Images:  A R…

    This is generally the sign of an ampersand that was not properly escaped for inclusion in an attribute, in a href for example. You will need to escape all instances of '&' into '&amp;'.

  74. Error Line 495, Column 341: reference to entity "h" for which no system identifier could be generated
    …p-content/uploads/2012/05/photo5.jpg&h=100&w=&zc=1" alt="Key West Images:  A R…

    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.

  75. Info Line 445, Column 308: entity was defined here
    …/wp-content/uploads/2012/04/photo1.jpg&h=100&w=&zc=1" alt="Pumpkin Pancake Rec…
  76. Warning Line 495, Column 347: reference not terminated by REFC delimiter
    …ent/uploads/2012/05/photo5.jpg&h=100&w=&zc=1" alt="Key West Images:  A Romanti…

    If you meant to include an entity that starts with "&", then you should terminate it with ";". Another reason for this error message is that you inadvertently created an entity by failing to escape an "&" character just before this text.

  77. Warning Line 495, Column 347: reference to external entity in attribute value
    …ent/uploads/2012/05/photo5.jpg&h=100&w=&zc=1" alt="Key West Images:  A Romanti…

    This is generally the sign of an ampersand that was not properly escaped for inclusion in an attribute, in a href for example. You will need to escape all instances of '&' into '&amp;'.

  78. Error Line 495, Column 347: reference to entity "w" for which no system identifier could be generated
    …ent/uploads/2012/05/photo5.jpg&h=100&w=&zc=1" alt="Key West Images:  A Romanti…

    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.

  79. Info Line 445, Column 314: entity was defined here
    …ntent/uploads/2012/04/photo1.jpg&h=100&w=&zc=1" alt="Pumpkin Pancake Recipe" /…
  80. Warning Line 495, Column 351: reference not terminated by REFC delimiter
    …uploads/2012/05/photo5.jpg&h=100&w=&zc=1" alt="Key West Images:  A Romantic Ge…

    If you meant to include an entity that starts with "&", then you should terminate it with ";". Another reason for this error message is that you inadvertently created an entity by failing to escape an "&" character just before this text.

  81. Warning Line 495, Column 351: reference to external entity in attribute value
    …uploads/2012/05/photo5.jpg&h=100&w=&zc=1" alt="Key West Images:  A Romantic Ge…

    This is generally the sign of an ampersand that was not properly escaped for inclusion in an attribute, in a href for example. You will need to escape all instances of '&' into '&amp;'.

  82. Error Line 495, Column 351: reference to entity "zc" for which no system identifier could be generated
    …uploads/2012/05/photo5.jpg&h=100&w=&zc=1" alt="Key West Images:  A Romantic Ge…

    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.

  83. Info Line 445, Column 317: entity was defined here
    …nt/uploads/2012/04/photo1.jpg&h=100&w=&zc=1" alt="Pumpkin Pancake Recipe" /></…
  84. Warning Line 507, Column 307: reference not terminated by REFC delimiter
    …p-content/uploads/2011/11/photo1.jpg&h=100&w=&zc=1" alt="JumpSport DoubleBounc…

    If you meant to include an entity that starts with "&", then you should terminate it with ";". Another reason for this error message is that you inadvertently created an entity by failing to escape an "&" character just before this text.

  85. Warning Line 507, Column 307: reference to external entity in attribute value
    …p-content/uploads/2011/11/photo1.jpg&h=100&w=&zc=1" alt="JumpSport DoubleBounc…

    This is generally the sign of an ampersand that was not properly escaped for inclusion in an attribute, in a href for example. You will need to escape all instances of '&' into '&amp;'.

  86. Error Line 507, Column 307: reference to entity "h" for which no system identifier could be generated
    …p-content/uploads/2011/11/photo1.jpg&h=100&w=&zc=1" alt="JumpSport DoubleBounc…

    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.

  87. Info Line 445, Column 308: entity was defined here
    …/wp-content/uploads/2012/04/photo1.jpg&h=100&w=&zc=1" alt="Pumpkin Pancake Rec…
  88. Warning Line 507, Column 313: reference not terminated by REFC delimiter
    …ent/uploads/2011/11/photo1.jpg&h=100&w=&zc=1" alt="JumpSport DoubleBounce Tram…

    If you meant to include an entity that starts with "&", then you should terminate it with ";". Another reason for this error message is that you inadvertently created an entity by failing to escape an "&" character just before this text.

  89. Warning Line 507, Column 313: reference to external entity in attribute value
    …ent/uploads/2011/11/photo1.jpg&h=100&w=&zc=1" alt="JumpSport DoubleBounce Tram…

    This is generally the sign of an ampersand that was not properly escaped for inclusion in an attribute, in a href for example. You will need to escape all instances of '&' into '&amp;'.

  90. Error Line 507, Column 313: reference to entity "w" for which no system identifier could be generated
    …ent/uploads/2011/11/photo1.jpg&h=100&w=&zc=1" alt="JumpSport DoubleBounce Tram…

    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.

  91. Info Line 445, Column 314: entity was defined here
    …ntent/uploads/2012/04/photo1.jpg&h=100&w=&zc=1" alt="Pumpkin Pancake Recipe" /…
  92. Warning Line 507, Column 317: reference not terminated by REFC delimiter
    …uploads/2011/11/photo1.jpg&h=100&w=&zc=1" alt="JumpSport DoubleBounce Trampoli…

    If you meant to include an entity that starts with "&", then you should terminate it with ";". Another reason for this error message is that you inadvertently created an entity by failing to escape an "&" character just before this text.

  93. Warning Line 507, Column 317: reference to external entity in attribute value
    …uploads/2011/11/photo1.jpg&h=100&w=&zc=1" alt="JumpSport DoubleBounce Trampoli…

    This is generally the sign of an ampersand that was not properly escaped for inclusion in an attribute, in a href for example. You will need to escape all instances of '&' into '&amp;'.

  94. Error Line 507, Column 317: reference to entity "zc" for which no system identifier could be generated
    …uploads/2011/11/photo1.jpg&h=100&w=&zc=1" alt="JumpSport DoubleBounce Trampoli…

    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.

  95. Info Line 445, Column 317: entity was defined here
    …nt/uploads/2012/04/photo1.jpg&h=100&w=&zc=1" alt="Pumpkin Pancake Recipe" /></…
  96. Warning Line 516, Column 326: reference not terminated by REFC delimiter
    …/2011/10/4313733705_3db563386a_b.jpg&h=100&w=&zc=1" alt="PND Approved Daily Mo…

    If you meant to include an entity that starts with "&", then you should terminate it with ";". Another reason for this error message is that you inadvertently created an entity by failing to escape an "&" character just before this text.

  97. Warning Line 516, Column 326: reference to external entity in attribute value
    …/2011/10/4313733705_3db563386a_b.jpg&h=100&w=&zc=1" alt="PND Approved Daily Mo…

    This is generally the sign of an ampersand that was not properly escaped for inclusion in an attribute, in a href for example. You will need to escape all instances of '&' into '&amp;'.

  98. Error Line 516, Column 326: reference to entity "h" for which no system identifier could be generated
    …/2011/10/4313733705_3db563386a_b.jpg&h=100&w=&zc=1" alt="PND Approved Daily Mo…

    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.

  99. Info Line 445, Column 308: entity was defined here
    …/wp-content/uploads/2012/04/photo1.jpg&h=100&w=&zc=1" alt="Pumpkin Pancake Rec…
  100. Warning Line 516, Column 332: reference not terminated by REFC delimiter
    …10/4313733705_3db563386a_b.jpg&h=100&w=&zc=1" alt="PND Approved Daily Moisturi…

    If you meant to include an entity that starts with "&", then you should terminate it with ";". Another reason for this error message is that you inadvertently created an entity by failing to escape an "&" character just before this text.

  101. Warning Line 516, Column 332: reference to external entity in attribute value
    …10/4313733705_3db563386a_b.jpg&h=100&w=&zc=1" alt="PND Approved Daily Moisturi…

    This is generally the sign of an ampersand that was not properly escaped for inclusion in an attribute, in a href for example. You will need to escape all instances of '&' into '&amp;'.

  102. Error Line 516, Column 332: reference to entity "w" for which no system identifier could be generated
    …10/4313733705_3db563386a_b.jpg&h=100&w=&zc=1" alt="PND Approved Daily Moisturi…

    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.

  103. Info Line 445, Column 314: entity was defined here
    …ntent/uploads/2012/04/photo1.jpg&h=100&w=&zc=1" alt="Pumpkin Pancake Recipe" /…
  104. Warning Line 516, Column 336: reference not terminated by REFC delimiter
    …313733705_3db563386a_b.jpg&h=100&w=&zc=1" alt="PND Approved Daily Moisturizer …

    If you meant to include an entity that starts with "&", then you should terminate it with ";". Another reason for this error message is that you inadvertently created an entity by failing to escape an "&" character just before this text.

  105. Warning Line 516, Column 336: reference to external entity in attribute value
    …313733705_3db563386a_b.jpg&h=100&w=&zc=1" alt="PND Approved Daily Moisturizer …

    This is generally the sign of an ampersand that was not properly escaped for inclusion in an attribute, in a href for example. You will need to escape all instances of '&' into '&amp;'.

  106. Error Line 516, Column 336: reference to entity "zc" for which no system identifier could be generated
    …313733705_3db563386a_b.jpg&h=100&w=&zc=1" alt="PND Approved Daily Moisturizer …

    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.

  107. Info Line 445, Column 317: entity was defined here
    …nt/uploads/2012/04/photo1.jpg&h=100&w=&zc=1" alt="Pumpkin Pancake Recipe" /></…
  108. Warning Line 528, Column 341: reference not terminated by REFC delimiter
    …uploads/2010/02/Optimized.41_2_3.jpg&h=100&w=&zc=1" alt="Zookeeper:  Fun Movie…

    If you meant to include an entity that starts with "&", then you should terminate it with ";". Another reason for this error message is that you inadvertently created an entity by failing to escape an "&" character just before this text.

  109. Warning Line 528, Column 341: reference to external entity in attribute value
    …uploads/2010/02/Optimized.41_2_3.jpg&h=100&w=&zc=1" alt="Zookeeper:  Fun Movie…

    This is generally the sign of an ampersand that was not properly escaped for inclusion in an attribute, in a href for example. You will need to escape all instances of '&' into '&amp;'.

  110. Error Line 528, Column 341: reference to entity "h" for which no system identifier could be generated
    …uploads/2010/02/Optimized.41_2_3.jpg&h=100&w=&zc=1" alt="Zookeeper:  Fun Movie…

    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.

  111. Info Line 445, Column 308: entity was defined here
    …/wp-content/uploads/2012/04/photo1.jpg&h=100&w=&zc=1" alt="Pumpkin Pancake Rec…
  112. Warning Line 528, Column 347: reference not terminated by REFC delimiter
    …s/2010/02/Optimized.41_2_3.jpg&h=100&w=&zc=1" alt="Zookeeper:  Fun Movie for t…

    If you meant to include an entity that starts with "&", then you should terminate it with ";". Another reason for this error message is that you inadvertently created an entity by failing to escape an "&" character just before this text.

  113. Warning Line 528, Column 347: reference to external entity in attribute value
    …s/2010/02/Optimized.41_2_3.jpg&h=100&w=&zc=1" alt="Zookeeper:  Fun Movie for t…

    This is generally the sign of an ampersand that was not properly escaped for inclusion in an attribute, in a href for example. You will need to escape all instances of '&' into '&amp;'.

  114. Error Line 528, Column 347: reference to entity "w" for which no system identifier could be generated
    …s/2010/02/Optimized.41_2_3.jpg&h=100&w=&zc=1" alt="Zookeeper:  Fun Movie for t…

    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.

  115. Info Line 445, Column 314: entity was defined here
    …ntent/uploads/2012/04/photo1.jpg&h=100&w=&zc=1" alt="Pumpkin Pancake Recipe" /…
  116. Warning Line 528, Column 351: reference not terminated by REFC delimiter
    …10/02/Optimized.41_2_3.jpg&h=100&w=&zc=1" alt="Zookeeper:  Fun Movie for the W…

    If you meant to include an entity that starts with "&", then you should terminate it with ";". Another reason for this error message is that you inadvertently created an entity by failing to escape an "&" character just before this text.

  117. Warning Line 528, Column 351: reference to external entity in attribute value
    …10/02/Optimized.41_2_3.jpg&h=100&w=&zc=1" alt="Zookeeper:  Fun Movie for the W…

    This is generally the sign of an ampersand that was not properly escaped for inclusion in an attribute, in a href for example. You will need to escape all instances of '&' into '&amp;'.

  118. Error Line 528, Column 351: reference to entity "zc" for which no system identifier could be generated
    …10/02/Optimized.41_2_3.jpg&h=100&w=&zc=1" alt="Zookeeper:  Fun Movie for the W…

    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.

  119. Info Line 445, Column 317: entity was defined here
    …nt/uploads/2012/04/photo1.jpg&h=100&w=&zc=1" alt="Pumpkin Pancake Recipe" /></…
  120. Warning Line 568, Column 324: reference not terminated by REFC delimiter
    …p-content/uploads/2012/05/photo2.jpg&h=150&w=&zc=1" alt="Mineral Make Up Ingre…

    If you meant to include an entity that starts with "&", then you should terminate it with ";". Another reason for this error message is that you inadvertently created an entity by failing to escape an "&" character just before this text.

  121. Warning Line 568, Column 324: reference to external entity in attribute value
    …p-content/uploads/2012/05/photo2.jpg&h=150&w=&zc=1" alt="Mineral Make Up Ingre…

    This is generally the sign of an ampersand that was not properly escaped for inclusion in an attribute, in a href for example. You will need to escape all instances of '&' into '&amp;'.

  122. Error Line 568, Column 324: reference to entity "h" for which no system identifier could be generated
    …p-content/uploads/2012/05/photo2.jpg&h=150&w=&zc=1" alt="Mineral Make Up Ingre…

    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.

  123. Info Line 445, Column 308: entity was defined here
    …/wp-content/uploads/2012/04/photo1.jpg&h=100&w=&zc=1" alt="Pumpkin Pancake Rec…
  124. Warning Line 568, Column 330: reference not terminated by REFC delimiter
    …ent/uploads/2012/05/photo2.jpg&h=150&w=&zc=1" alt="Mineral Make Up Ingredients…

    If you meant to include an entity that starts with "&", then you should terminate it with ";". Another reason for this error message is that you inadvertently created an entity by failing to escape an "&" character just before this text.

  125. Warning Line 568, Column 330: reference to external entity in attribute value
    …ent/uploads/2012/05/photo2.jpg&h=150&w=&zc=1" alt="Mineral Make Up Ingredients…

    This is generally the sign of an ampersand that was not properly escaped for inclusion in an attribute, in a href for example. You will need to escape all instances of '&' into '&amp;'.

  126. Error Line 568, Column 330: reference to entity "w" for which no system identifier could be generated
    …ent/uploads/2012/05/photo2.jpg&h=150&w=&zc=1" alt="Mineral Make Up Ingredients…

    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.

  127. Info Line 445, Column 314: entity was defined here
    …ntent/uploads/2012/04/photo1.jpg&h=100&w=&zc=1" alt="Pumpkin Pancake Recipe" /…
  128. Warning Line 568, Column 334: reference not terminated by REFC delimiter
    …uploads/2012/05/photo2.jpg&h=150&w=&zc=1" alt="Mineral Make Up Ingredients To …

    If you meant to include an entity that starts with "&", then you should terminate it with ";". Another reason for this error message is that you inadvertently created an entity by failing to escape an "&" character just before this text.

  129. Warning Line 568, Column 334: reference to external entity in attribute value
    …uploads/2012/05/photo2.jpg&h=150&w=&zc=1" alt="Mineral Make Up Ingredients To …

    This is generally the sign of an ampersand that was not properly escaped for inclusion in an attribute, in a href for example. You will need to escape all instances of '&' into '&amp;'.

  130. Error Line 568, Column 334: reference to entity "zc" for which no system identifier could be generated
    …uploads/2012/05/photo2.jpg&h=150&w=&zc=1" alt="Mineral Make Up Ingredients To …

    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.

  131. Info Line 445, Column 317: entity was defined here
    …nt/uploads/2012/04/photo1.jpg&h=100&w=&zc=1" alt="Pumpkin Pancake Recipe" /></…
  132. Warning Line 577, Column 378: reference not terminated by REFC delimiter
    …p-content/uploads/2012/05/photo1.jpg&h=150&w=&zc=1" alt="Attachement Parenting…

    If you meant to include an entity that starts with "&", then you should terminate it with ";". Another reason for this error message is that you inadvertently created an entity by failing to escape an "&" character just before this text.

  133. Warning Line 577, Column 378: reference to external entity in attribute value
    …p-content/uploads/2012/05/photo1.jpg&h=150&w=&zc=1" alt="Attachement Parenting…

    This is generally the sign of an ampersand that was not properly escaped for inclusion in an attribute, in a href for example. You will need to escape all instances of '&' into '&amp;'.

  134. Error Line 577, Column 378: reference to entity "h" for which no system identifier could be generated
    …p-content/uploads/2012/05/photo1.jpg&h=150&w=&zc=1" alt="Attachement Parenting…

    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.

  135. Info Line 445, Column 308: entity was defined here
    …/wp-content/uploads/2012/04/photo1.jpg&h=100&w=&zc=1" alt="Pumpkin Pancake Rec…
  136. Warning Line 577, Column 384: reference not terminated by REFC delimiter
    …ent/uploads/2012/05/photo1.jpg&h=150&w=&zc=1" alt="Attachement Parenting Takes…

    If you meant to include an entity that starts with "&", then you should terminate it with ";". Another reason for this error message is that you inadvertently created an entity by failing to escape an "&" character just before this text.

  137. Warning Line 577, Column 384: reference to external entity in attribute value
    …ent/uploads/2012/05/photo1.jpg&h=150&w=&zc=1" alt="Attachement Parenting Takes…

    This is generally the sign of an ampersand that was not properly escaped for inclusion in an attribute, in a href for example. You will need to escape all instances of '&' into '&amp;'.

  138. Error Line 577, Column 384: reference to entity "w" for which no system identifier could be generated
    …ent/uploads/2012/05/photo1.jpg&h=150&w=&zc=1" alt="Attachement Parenting Takes…

    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.

  139. Info Line 445, Column 314: entity was defined here
    …ntent/uploads/2012/04/photo1.jpg&h=100&w=&zc=1" alt="Pumpkin Pancake Recipe" /…
  140. Warning Line 577, Column 388: reference not terminated by REFC delimiter
    …uploads/2012/05/photo1.jpg&h=150&w=&zc=1" alt="Attachement Parenting Takes the…

    If you meant to include an entity that starts with "&", then you should terminate it with ";". Another reason for this error message is that you inadvertently created an entity by failing to escape an "&" character just before this text.

  141. Warning Line 577, Column 388: reference to external entity in attribute value
    …uploads/2012/05/photo1.jpg&h=150&w=&zc=1" alt="Attachement Parenting Takes the…

    This is generally the sign of an ampersand that was not properly escaped for inclusion in an attribute, in a href for example. You will need to escape all instances of '&' into '&amp;'.

  142. Error Line 577, Column 388: reference to entity "zc" for which no system identifier could be generated
    …uploads/2012/05/photo1.jpg&h=150&w=&zc=1" alt="Attachement Parenting Takes the…

    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.

  143. Info Line 445, Column 317: entity was defined here
    …nt/uploads/2012/04/photo1.jpg&h=100&w=&zc=1" alt="Pumpkin Pancake Recipe" /></…
  144. Warning Line 620, Column 321: reference not terminated by REFC delimiter
    …wp-content/uploads/2012/05/photo.jpg&h=150&w=&zc=1" alt="Wordless Wedsnesday: …

    If you meant to include an entity that starts with "&", then you should terminate it with ";". Another reason for this error message is that you inadvertently created an entity by failing to escape an "&" character just before this text.

  145. Warning Line 620, Column 321: reference to external entity in attribute value
    …wp-content/uploads/2012/05/photo.jpg&h=150&w=&zc=1" alt="Wordless Wedsnesday: …

    This is generally the sign of an ampersand that was not properly escaped for inclusion in an attribute, in a href for example. You will need to escape all instances of '&' into '&amp;'.

  146. Error Line 620, Column 321: reference to entity "h" for which no system identifier could be generated
    …wp-content/uploads/2012/05/photo.jpg&h=150&w=&zc=1" alt="Wordless Wedsnesday: …

    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.

  147. Info Line 445, Column 308: entity was defined here
    …/wp-content/uploads/2012/04/photo1.jpg&h=100&w=&zc=1" alt="Pumpkin Pancake Rec…
  148. Warning Line 620, Column 327: reference not terminated by REFC delimiter
    …tent/uploads/2012/05/photo.jpg&h=150&w=&zc=1" alt="Wordless Wedsnesday:  Dogs …

    If you meant to include an entity that starts with "&", then you should terminate it with ";". Another reason for this error message is that you inadvertently created an entity by failing to escape an "&" character just before this text.

  149. Warning Line 620, Column 327: reference to external entity in attribute value
    …tent/uploads/2012/05/photo.jpg&h=150&w=&zc=1" alt="Wordless Wedsnesday:  Dogs …

    This is generally the sign of an ampersand that was not properly escaped for inclusion in an attribute, in a href for example. You will need to escape all instances of '&' into '&amp;'.

  150. Error Line 620, Column 327: reference to entity "w" for which no system identifier could be generated
    …tent/uploads/2012/05/photo.jpg&h=150&w=&zc=1" alt="Wordless Wedsnesday:  Dogs …

    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.

  151. Info Line 445, Column 314: entity was defined here
    …ntent/uploads/2012/04/photo1.jpg&h=100&w=&zc=1" alt="Pumpkin Pancake Recipe" /…
  152. Warning Line 620, Column 331: reference not terminated by REFC delimiter
    …/uploads/2012/05/photo.jpg&h=150&w=&zc=1" alt="Wordless Wedsnesday:  Dogs in M…

    If you meant to include an entity that starts with "&", then you should terminate it with ";". Another reason for this error message is that you inadvertently created an entity by failing to escape an "&" character just before this text.

  153. Warning Line 620, Column 331: reference to external entity in attribute value
    …/uploads/2012/05/photo.jpg&h=150&w=&zc=1" alt="Wordless Wedsnesday:  Dogs in M…

    This is generally the sign of an ampersand that was not properly escaped for inclusion in an attribute, in a href for example. You will need to escape all instances of '&' into '&amp;'.

  154. Error Line 620, Column 331: reference to entity "zc" for which no system identifier could be generated
    …/uploads/2012/05/photo.jpg&h=150&w=&zc=1" alt="Wordless Wedsnesday:  Dogs in M…

    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.

  155. Info Line 445, Column 317: entity was defined here
    …nt/uploads/2012/04/photo1.jpg&h=100&w=&zc=1" alt="Pumpkin Pancake Recipe" /></…
  156. Warning Line 643, Column 310: reference not terminated by REFC delimiter
    …p-content/uploads/2012/04/photo6.jpg&h=150&w=&zc=1" alt="Bubble Rollers: Good …

    If you meant to include an entity that starts with "&", then you should terminate it with ";". Another reason for this error message is that you inadvertently created an entity by failing to escape an "&" character just before this text.

  157. Warning Line 643, Column 310: reference to external entity in attribute value
    …p-content/uploads/2012/04/photo6.jpg&h=150&w=&zc=1" alt="Bubble Rollers: Good …

    This is generally the sign of an ampersand that was not properly escaped for inclusion in an attribute, in a href for example. You will need to escape all instances of '&' into '&amp;'.

  158. Error Line 643, Column 310: reference to entity "h" for which no system identifier could be generated
    …p-content/uploads/2012/04/photo6.jpg&h=150&w=&zc=1" alt="Bubble Rollers: Good …

    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.

  159. Info Line 445, Column 308: entity was defined here
    …/wp-content/uploads/2012/04/photo1.jpg&h=100&w=&zc=1" alt="Pumpkin Pancake Rec…
  160. Warning Line 643, Column 316: reference not terminated by REFC delimiter
    …ent/uploads/2012/04/photo6.jpg&h=150&w=&zc=1" alt="Bubble Rollers: Good for a …

    If you meant to include an entity that starts with "&", then you should terminate it with ";". Another reason for this error message is that you inadvertently created an entity by failing to escape an "&" character just before this text.

  161. Warning Line 643, Column 316: reference to external entity in attribute value
    …ent/uploads/2012/04/photo6.jpg&h=150&w=&zc=1" alt="Bubble Rollers: Good for a …

    This is generally the sign of an ampersand that was not properly escaped for inclusion in an attribute, in a href for example. You will need to escape all instances of '&' into '&amp;'.

  162. Error Line 643, Column 316: reference to entity "w" for which no system identifier could be generated
    …ent/uploads/2012/04/photo6.jpg&h=150&w=&zc=1" alt="Bubble Rollers: Good for a …

    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.

  163. Info Line 445, Column 314: entity was defined here
    …ntent/uploads/2012/04/photo1.jpg&h=100&w=&zc=1" alt="Pumpkin Pancake Recipe" /…
  164. Warning Line 643, Column 320: reference not terminated by REFC delimiter
    …uploads/2012/04/photo6.jpg&h=150&w=&zc=1" alt="Bubble Rollers: Good for a Gigg…

    If you meant to include an entity that starts with "&", then you should terminate it with ";". Another reason for this error message is that you inadvertently created an entity by failing to escape an "&" character just before this text.

  165. Warning Line 643, Column 320: reference to external entity in attribute value
    …uploads/2012/04/photo6.jpg&h=150&w=&zc=1" alt="Bubble Rollers: Good for a Gigg…

    This is generally the sign of an ampersand that was not properly escaped for inclusion in an attribute, in a href for example. You will need to escape all instances of '&' into '&amp;'.

  166. Error Line 643, Column 320: reference to entity "zc" for which no system identifier could be generated
    …uploads/2012/04/photo6.jpg&h=150&w=&zc=1" alt="Bubble Rollers: Good for a Gigg…

    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.

  167. Info Line 445, Column 317: entity was defined here
    …nt/uploads/2012/04/photo1.jpg&h=100&w=&zc=1" alt="Pumpkin Pancake Recipe" /></…
  168. Warning Line 651, Column 306: reference not terminated by REFC delimiter
    …p-content/uploads/2012/04/photo3.jpg&h=150&w=&zc=1" alt="New Spring Fashion:  …

    If you meant to include an entity that starts with "&", then you should terminate it with ";". Another reason for this error message is that you inadvertently created an entity by failing to escape an "&" character just before this text.

  169. Warning Line 651, Column 306: reference to external entity in attribute value
    …p-content/uploads/2012/04/photo3.jpg&h=150&w=&zc=1" alt="New Spring Fashion:  …

    This is generally the sign of an ampersand that was not properly escaped for inclusion in an attribute, in a href for example. You will need to escape all instances of '&' into '&amp;'.

  170. Error Line 651, Column 306: reference to entity "h" for which no system identifier could be generated
    …p-content/uploads/2012/04/photo3.jpg&h=150&w=&zc=1" alt="New Spring Fashion:  …

    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.

  171. Info Line 445, Column 308: entity was defined here
    …/wp-content/uploads/2012/04/photo1.jpg&h=100&w=&zc=1" alt="Pumpkin Pancake Rec…
  172. Warning Line 651, Column 312: reference not terminated by REFC delimiter
    …ent/uploads/2012/04/photo3.jpg&h=150&w=&zc=1" alt="New Spring Fashion:  Dinner…

    If you meant to include an entity that starts with "&", then you should terminate it with ";". Another reason for this error message is that you inadvertently created an entity by failing to escape an "&" character just before this text.

  173. Warning Line 651, Column 312: reference to external entity in attribute value
    …ent/uploads/2012/04/photo3.jpg&h=150&w=&zc=1" alt="New Spring Fashion:  Dinner…

    This is generally the sign of an ampersand that was not properly escaped for inclusion in an attribute, in a href for example. You will need to escape all instances of '&' into '&amp;'.

  174. Error Line 651, Column 312: reference to entity "w" for which no system identifier could be generated
    …ent/uploads/2012/04/photo3.jpg&h=150&w=&zc=1" alt="New Spring Fashion:  Dinner…

    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.

  175. Info Line 445, Column 314: entity was defined here
    …ntent/uploads/2012/04/photo1.jpg&h=100&w=&zc=1" alt="Pumpkin Pancake Recipe" /…
  176. Warning Line 651, Column 316: reference not terminated by REFC delimiter
    …uploads/2012/04/photo3.jpg&h=150&w=&zc=1" alt="New Spring Fashion:  Dinner wit…

    If you meant to include an entity that starts with "&", then you should terminate it with ";". Another reason for this error message is that you inadvertently created an entity by failing to escape an "&" character just before this text.

  177. Warning Line 651, Column 316: reference to external entity in attribute value
    …uploads/2012/04/photo3.jpg&h=150&w=&zc=1" alt="New Spring Fashion:  Dinner wit…

    This is generally the sign of an ampersand that was not properly escaped for inclusion in an attribute, in a href for example. You will need to escape all instances of '&' into '&amp;'.

  178. Error Line 651, Column 316: reference to entity "zc" for which no system identifier could be generated
    …uploads/2012/04/photo3.jpg&h=150&w=&zc=1" alt="New Spring Fashion:  Dinner wit…

    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.

  179. Info Line 445, Column 317: entity was defined here
    …nt/uploads/2012/04/photo1.jpg&h=100&w=&zc=1" alt="Pumpkin Pancake Recipe" /></…
  180. Error Line 683, Column 201: required attribute "alt" not specified
    …http://www.purenaturaldiva.com/wp-content/uploads/2011/01/pndemail2.png" /></a>

    The attribute given above is required for an element that you've used, but you have omitted it. For instance, in most HTML and XHTML document types the "type" attribute is required on the "script" element and the "alt" attribute is required for the "img" element.

    Typical values for type are type="text/css" for <style> and type="text/javascript" for <script>.

  181. Warning Line 685, Column 128: unclosed start-tag requires SHORTTAG YES
    …rc="http://www.purenaturaldiva.com/wp-content/uploads/2009/08/facebook.png"</a>

    The construct <foo<bar> is valid in HTML (it is an example of the rather obscure “Shorttags” feature) but its use is not recommended. In most cases, this is a typo that you will want to fix. If you really want to use shorttags, be aware that they are not well implemented by browsers.

  182. Error Line 685, Column 128: required attribute "alt" not specified
    …rc="http://www.purenaturaldiva.com/wp-content/uploads/2009/08/facebook.png"</a>

    The attribute given above is required for an element that you've used, but you have omitted it. For instance, in most HTML and XHTML document types the "type" attribute is required on the "script" element and the "alt" attribute is required for the "img" element.

    Typical values for type are type="text/css" for <style> and type="text/javascript" for <script>.

  183. Error Line 685, Column 131: end tag for "img" omitted, but OMITTAG NO was specified
    …rc="http://www.purenaturaldiva.com/wp-content/uploads/2009/08/facebook.png"</a>

    You may have neglected to close an element, or perhaps you meant to "self-close" an element, that is, ending it with "/>" instead of ">".

  184. Info Line 685, Column 47: start tag was here
    …"http://facebook.com/purenaturaldiva"><img src="http://www.purenaturaldiva.com…
  185. Warning Line 687, Column 135: unclosed start-tag requires SHORTTAG YES
    …ttp://www.purenaturaldiva.com/wp-content/uploads/2012/02/pinterest_red.png"</a>

    The construct <foo<bar> is valid in HTML (it is an example of the rather obscure “Shorttags” feature) but its use is not recommended. In most cases, this is a typo that you will want to fix. If you really want to use shorttags, be aware that they are not well implemented by browsers.

  186. Error Line 687, Column 135: required attribute "alt" not specified
    …ttp://www.purenaturaldiva.com/wp-content/uploads/2012/02/pinterest_red.png"</a>

    The attribute given above is required for an element that you've used, but you have omitted it. For instance, in most HTML and XHTML document types the "type" attribute is required on the "script" element and the "alt" attribute is required for the "img" element.

    Typical values for type are type="text/css" for <style> and type="text/javascript" for <script>.

  187. Error Line 687, Column 138: end tag for "img" omitted, but OMITTAG NO was specified
    …ttp://www.purenaturaldiva.com/wp-content/uploads/2012/02/pinterest_red.png"</a>

    You may have neglected to close an element, or perhaps you meant to "self-close" an element, that is, ending it with "/>" instead of ">".

  188. Info Line 687, Column 49: start tag was here
    …ttp://pinterest.com/purenaturaldiva/"><img src="http://www.purenaturaldiva.com…
  189. Warning Line 689, Column 126: unclosed start-tag requires SHORTTAG YES
    …src="http://www.purenaturaldiva.com/wp-content/uploads/2009/08/twitter.png"</a>

    The construct <foo<bar> is valid in HTML (it is an example of the rather obscure “Shorttags” feature) but its use is not recommended. In most cases, this is a typo that you will want to fix. If you really want to use shorttags, be aware that they are not well implemented by browsers.

  190. Error Line 689, Column 126: required attribute "alt" not specified
    …src="http://www.purenaturaldiva.com/wp-content/uploads/2009/08/twitter.png"</a>

    The attribute given above is required for an element that you've used, but you have omitted it. For instance, in most HTML and XHTML document types the "type" attribute is required on the "script" element and the "alt" attribute is required for the "img" element.

    Typical values for type are type="text/css" for <style> and type="text/javascript" for <script>.

  191. Error Line 689, Column 129: end tag for "img" omitted, but OMITTAG NO was specified
    …src="http://www.purenaturaldiva.com/wp-content/uploads/2009/08/twitter.png"</a>

    You may have neglected to close an element, or perhaps you meant to "self-close" an element, that is, ending it with "/>" instead of ">".

  192. Info Line 689, Column 46: start tag was here
    …="http://twitter.com/purenaturaldiva"><img src="http://www.purenaturaldiva.com…
  193. Warning Line 691, Column 135: unclosed start-tag requires SHORTTAG YES
    …purenaturaldiva.com/wp-content/uploads/2009/08/linkedin.png"</a></center></div>

    The construct <foo<bar> is valid in HTML (it is an example of the rather obscure “Shorttags” feature) but its use is not recommended. In most cases, this is a typo that you will want to fix. If you really want to use shorttags, be aware that they are not well implemented by browsers.

  194. Error Line 691, Column 135: required attribute "alt" not specified
    …purenaturaldiva.com/wp-content/uploads/2009/08/linkedin.png"</a></center></div>

    The attribute given above is required for an element that you've used, but you have omitted it. For instance, in most HTML and XHTML document types the "type" attribute is required on the "script" element and the "alt" attribute is required for the "img" element.

    Typical values for type are type="text/css" for <style> and type="text/javascript" for <script>.

  195. Error Line 691, Column 138: end tag for "img" omitted, but OMITTAG NO was specified
    …purenaturaldiva.com/wp-content/uploads/2009/08/linkedin.png"</a></center></div>

    You may have neglected to close an element, or perhaps you meant to "self-close" an element, that is, ending it with "/>" instead of ">".

  196. Info Line 691, Column 54: start tag was here
    …/www.linkedin.com/in/purenaturaldiva"><img src="http://www.purenaturaldiva.com…
  197. Error Line 694, Column 155: required attribute "alt" not specified
    …nsit.com/designimages/pndfamily.png" /></a><span style="font-size:75%;">Sponso…

    The attribute given above is required for an element that you've used, but you have omitted it. For instance, in most HTML and XHTML document types the "type" attribute is required on the "script" element and the "alt" attribute is required for the "img" element.

    Typical values for type are type="text/css" for <style> and type="text/javascript" for <script>.

  198. Warning Line 695, Column 97: cannot generate system identifier for general entity "utm_medium"
    …d-safe-chemicals-act/?utm_source=Blog&utm_medium=Badge&utm_campaign=Kid-Safe-P…

    An entity reference was found in the document, but there is no reference by that name defined. Often this is caused by misspelling the reference name, unencoded ampersands, or by leaving off the trailing semicolon (;). The most common cause of this error is unencoded ampersands in URLs as described by the WDG in "Ampersands in URLs".

    Entity references start with an ampersand (&) and end with a semicolon (;). If you want to use a literal ampersand in your document you must encode it as "&amp;" (even inside URLs!). Be careful to end entity references with a semicolon or your entity reference may get interpreted in connection with the following text. Also keep in mind that named entity references are case-sensitive; &Aelig; and &aelig; are different characters.

    If this error appears in some markup generated by PHP's session handling code, this article has explanations and solutions to your problem.

    Note that in most documents, errors related to entity references will trigger up to 5 separate messages from the Validator. Usually these will all disappear when the original problem is fixed.

  199. Error Line 695, Column 97: general entity "utm_medium" not defined and no default entity
    …d-safe-chemicals-act/?utm_source=Blog&utm_medium=Badge&utm_campaign=Kid-Safe-P…

    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.

  200. Warning Line 695, Column 107: reference not terminated by REFC delimiter
    …micals-act/?utm_source=Blog&utm_medium=Badge&utm_campaign=Kid-Safe-Pure-Natura…

    If you meant to include an entity that starts with "&", then you should terminate it with ";". Another reason for this error message is that you inadvertently created an entity by failing to escape an "&" character just before this text.

  201. Warning Line 695, Column 107: reference to external entity in attribute value
    …micals-act/?utm_source=Blog&utm_medium=Badge&utm_campaign=Kid-Safe-Pure-Natura…

    This is generally the sign of an ampersand that was not properly escaped for inclusion in an attribute, in a href for example. You will need to escape all instances of '&' into '&amp;'.

  202. Error Line 695, Column 107: reference to entity "utm_medium" for which no system identifier could be generated
    …micals-act/?utm_source=Blog&utm_medium=Badge&utm_campaign=Kid-Safe-Pure-Natura…

    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.

  203. Info Line 695, Column 96: entity was defined here
    …id-safe-chemicals-act/?utm_source=Blog&utm_medium=Badge&utm_campaign=Kid-Safe-…
  204. Warning Line 695, Column 114: cannot generate system identifier for general entity "utm_campaign"
    …act/?utm_source=Blog&utm_medium=Badge&utm_campaign=Kid-Safe-Pure-Natural-Diva"…

    An entity reference was found in the document, but there is no reference by that name defined. Often this is caused by misspelling the reference name, unencoded ampersands, or by leaving off the trailing semicolon (;). The most common cause of this error is unencoded ampersands in URLs as described by the WDG in "Ampersands in URLs".

    Entity references start with an ampersand (&) and end with a semicolon (;). If you want to use a literal ampersand in your document you must encode it as "&amp;" (even inside URLs!). Be careful to end entity references with a semicolon or your entity reference may get interpreted in connection with the following text. Also keep in mind that named entity references are case-sensitive; &Aelig; and &aelig; are different characters.

    If this error appears in some markup generated by PHP's session handling code, this article has explanations and solutions to your problem.

    Note that in most documents, errors related to entity references will trigger up to 5 separate messages from the Validator. Usually these will all disappear when the original problem is fixed.

  205. Error Line 695, Column 114: general entity "utm_campaign" not defined and no default entity
    …act/?utm_source=Blog&utm_medium=Badge&utm_campaign=Kid-Safe-Pure-Natural-Diva"…

    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.

  206. Warning Line 695, Column 126: reference not terminated by REFC delimiter
    …rce=Blog&utm_medium=Badge&utm_campaign=Kid-Safe-Pure-Natural-Diva">Safe Chemic…

    If you meant to include an entity that starts with "&", then you should terminate it with ";". Another reason for this error message is that you inadvertently created an entity by failing to escape an "&" character just before this text.

  207. Warning Line 695, Column 126: reference to external entity in attribute value
    …rce=Blog&utm_medium=Badge&utm_campaign=Kid-Safe-Pure-Natural-Diva">Safe Chemic…

    This is generally the sign of an ampersand that was not properly escaped for inclusion in an attribute, in a href for example. You will need to escape all instances of '&' into '&amp;'.

  208. Error Line 695, Column 126: reference to entity "utm_campaign" for which no system identifier could be generated
    …rce=Blog&utm_medium=Badge&utm_campaign=Kid-Safe-Pure-Natural-Diva">Safe Chemic…

    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.

  209. Info Line 695, Column 113: entity was defined here
    …-act/?utm_source=Blog&utm_medium=Badge&utm_campaign=Kid-Safe-Pure-Natural-Diva…
  210. Error Line 697, Column 147: required attribute "alt" not specified
    …nsit.com/designimages/pndbeauty.png" /></a><span style="font-size:75%;">Sponso…

    The attribute given above is required for an element that you've used, but you have omitted it. For instance, in most HTML and XHTML document types the "type" attribute is required on the "script" element and the "alt" attribute is required for the "img" element.

    Typical values for type are type="text/css" for <style> and type="text/javascript" for <script>.

  211. Error Line 700, Column 148: required attribute "alt" not specified
    …sit.com/designimages/pndfitness.png" /></a><span style="font-size:75%;">Sponso…

    The attribute given above is required for an element that you've used, but you have omitted it. For instance, in most HTML and XHTML document types the "type" attribute is required on the "script" element and the "alt" attribute is required for the "img" element.

    Typical values for type are type="text/css" for <style> and type="text/javascript" for <script>.

  212. Error Line 703, Column 126: required attribute "alt" not specified
    …ignsit.com/designimages/pndfood.png" /></a><span style="font-size:75%;">Sponso…

    The attribute given above is required for an element that you've used, but you have omitted it. For instance, in most HTML and XHTML document types the "type" attribute is required on the "script" element and the "alt" attribute is required for the "img" element.

    Typical values for type are type="text/css" for <style> and type="text/javascript" for <script>.

  213. Error Line 706, Column 154: required attribute "alt" not specified
    …sit.com/designimages/pndfashion.png" /></a><span style="font-size:75%;">Sponso…

    The attribute given above is required for an element that you've used, but you have omitted it. For instance, in most HTML and XHTML document types the "type" attribute is required on the "script" element and the "alt" attribute is required for the "img" element.

    Typical values for type are type="text/css" for <style> and type="text/javascript" for <script>.

  214. Error Line 709, Column 134: required attribute "alt" not specified
    …nsit.com/designimages/pndhealth.png" /></a><span style="font-size:75%;">Sponso…

    The attribute given above is required for an element that you've used, but you have omitted it. For instance, in most HTML and XHTML document types the "type" attribute is required on the "script" element and the "alt" attribute is required for the "img" element.

    Typical values for type are type="text/css" for <style> and type="text/javascript" for <script>.

  215. Error Line 712, Column 129: required attribute "alt" not specified
    …ignsit.com/designimages/pndhome.png" /></a><span style="font-size:75%;">Sponso…

    The attribute given above is required for an element that you've used, but you have omitted it. For instance, in most HTML and XHTML document types the "type" attribute is required on the "script" element and the "alt" attribute is required for the "img" element.

    Typical values for type are type="text/css" for <style> and type="text/javascript" for <script>.

  216. Error Line 715, Column 112: required attribute "alt" not specified
    …t.com/designimages/pndinthenews.png" /></a><span style="font-size:75%;">Sponso…

    The attribute given above is required for an element that you've used, but you have omitted it. For instance, in most HTML and XHTML document types the "type" attribute is required on the "script" element and the "alt" attribute is required for the "img" element.

    Typical values for type are type="text/css" for <style> and type="text/javascript" for <script>.

  217. Error Line 718, Column 113: required attribute "alt" not specified
    ….com/designimages/pndtechnology.png" /></a><span style="font-size:75%;">Sponso…

    The attribute given above is required for an element that you've used, but you have omitted it. For instance, in most HTML and XHTML document types the "type" attribute is required on the "script" element and the "alt" attribute is required for the "img" element.

    Typical values for type are type="text/css" for <style> and type="text/javascript" for <script>.

  218. Error Line 721, Column 125: required attribute "alt" not specified
    …nsit.com/designimages/pndtravel.png" /></a><span style="font-size:75%;">Sponso…

    The attribute given above is required for an element that you've used, but you have omitted it. For instance, in most HTML and XHTML document types the "type" attribute is required on the "script" element and the "alt" attribute is required for the "img" element.

    Typical values for type are type="text/css" for <style> and type="text/javascript" for <script>.

  219. Warning Line 724, Column 240: character "&" is the first character of a delimiter but occurred as data
    …m name="flashVars" value="vid=21390524&"></param><param name="allowfullscreen"…

    This message may appear in several cases:

    • You tried to include the "<" character in your page: you should escape it as "&lt;"
    • You used an unescaped ampersand "&": this may be valid in some contexts, but it is recommended to use "&amp;", which is always safe.
    • Another possibility is that you forgot to close quotes in a previous tag.
  220. Error Line 724, Column 363: there is no attribute "width"
    …ue="transparent"></param><embed width="576" height="324" allowFullScreen="true…

    You have used the attribute named above in your document, but the document type you are using does not support that attribute for this element. This error is often caused by incorrect use of the "Strict" document type with a document that uses frames (e.g. you must use the "Transitional" document type to get the "target" attribute), or by using vendor proprietary extensions such as "marginheight" (this is usually fixed by using CSS to achieve the desired effect instead).

    This error may also result if the element itself is not supported in the document type you are using, as an undefined element will have no supported attributes; in this case, see the element-undefined error message for further information.

    How to fix: check the spelling and case of the element and attribute, (Remember XHTML is all lower-case) and/or check that they are both allowed in the chosen document type, and/or use CSS instead of this attribute. If you received this error when using the <embed> element to incorporate flash media in a Web page, see the FAQ item on valid flash.

  221. Error Line 724, Column 376: there is no attribute "height"
    …nt"></param><embed width="576" height="324" allowFullScreen="true" src="http:/…

    You have used the attribute named above in your document, but the document type you are using does not support that attribute for this element. This error is often caused by incorrect use of the "Strict" document type with a document that uses frames (e.g. you must use the "Transitional" document type to get the "target" attribute), or by using vendor proprietary extensions such as "marginheight" (this is usually fixed by using CSS to achieve the desired effect instead).

    This error may also result if the element itself is not supported in the document type you are using, as an undefined element will have no supported attributes; in this case, see the element-undefined error message for further information.

    How to fix: check the spelling and case of the element and attribute, (Remember XHTML is all lower-case) and/or check that they are both allowed in the chosen document type, and/or use CSS instead of this attribute. If you received this error when using the <embed> element to incorporate flash media in a Web page, see the FAQ item on valid flash.

  222. Error Line 724, Column 398: there is no attribute "allowFullScreen"
    …th="576" height="324" allowFullScreen="true" src="http://d.yimg.com/nl/shine/s…

    You have used the attribute named above in your document, but the document type you are using does not support that attribute for this element. This error is often caused by incorrect use of the "Strict" document type with a document that uses frames (e.g. you must use the "Transitional" document type to get the "target" attribute), or by using vendor proprietary extensions such as "marginheight" (this is usually fixed by using CSS to achieve the desired effect instead).

    This error may also result if the element itself is not supported in the document type you are using, as an undefined element will have no supported attributes; in this case, see the element-undefined error message for further information.

    How to fix: check the spelling and case of the element and attribute, (Remember XHTML is all lower-case) and/or check that they are both allowed in the chosen document type, and/or use CSS instead of this attribute. If you received this error when using the <embed> element to incorporate flash media in a Web page, see the FAQ item on valid flash.

  223. Error Line 724, Column 409: there is no attribute "src"
    …ight="324" allowFullScreen="true" src="http://d.yimg.com/nl/shine/shine/player…

    You have used the attribute named above in your document, but the document type you are using does not support that attribute for this element. This error is often caused by incorrect use of the "Strict" document type with a document that uses frames (e.g. you must use the "Transitional" document type to get the "target" attribute), or by using vendor proprietary extensions such as "marginheight" (this is usually fixed by using CSS to achieve the desired effect instead).

    This error may also result if the element itself is not supported in the document type you are using, as an undefined element will have no supported attributes; in this case, see the element-undefined error message for further information.

    How to fix: check the spelling and case of the element and attribute, (Remember XHTML is all lower-case) and/or check that they are both allowed in the chosen document type, and/or use CSS instead of this attribute. If you received this error when using the <embed> element to incorporate flash media in a Web page, see the FAQ item on valid flash.

  224. Error Line 724, Column 460: there is no attribute "type"
    …g.com/nl/shine/shine/player.swf" type="application/x-shockwave-flash" flashvar…

    You have used the attribute named above in your document, but the document type you are using does not support that attribute for this element. This error is often caused by incorrect use of the "Strict" document type with a document that uses frames (e.g. you must use the "Transitional" document type to get the "target" attribute), or by using vendor proprietary extensions such as "marginheight" (this is usually fixed by using CSS to achieve the desired effect instead).

    This error may also result if the element itself is not supported in the document type you are using, as an undefined element will have no supported attributes; in this case, see the element-undefined error message for further information.

    How to fix: check the spelling and case of the element and attribute, (Remember XHTML is all lower-case) and/or check that they are both allowed in the chosen document type, and/or use CSS instead of this attribute. If you received this error when using the <embed> element to incorporate flash media in a Web page, see the FAQ item on valid flash.

  225. Error Line 724, Column 502: there is no attribute "flashvars"
    …lication/x-shockwave-flash" flashvars="vid=21390524&"></embed></object></div><…

    You have used the attribute named above in your document, but the document type you are using does not support that attribute for this element. This error is often caused by incorrect use of the "Strict" document type with a document that uses frames (e.g. you must use the "Transitional" document type to get the "target" attribute), or by using vendor proprietary extensions such as "marginheight" (this is usually fixed by using CSS to achieve the desired effect instead).

    This error may also result if the element itself is not supported in the document type you are using, as an undefined element will have no supported attributes; in this case, see the element-undefined error message for further information.

    How to fix: check the spelling and case of the element and attribute, (Remember XHTML is all lower-case) and/or check that they are both allowed in the chosen document type, and/or use CSS instead of this attribute. If you received this error when using the <embed> element to incorporate flash media in a Web page, see the FAQ item on valid flash.

  226. Warning Line 724, Column 515: character "&" is the first character of a delimiter but occurred as data
    …tion/x-shockwave-flash" flashvars="vid=21390524&"></embed></object></div></div>

    This message may appear in several cases:

    • You tried to include the "<" character in your page: you should escape it as "&lt;"
    • You used an unescaped ampersand "&": this may be valid in some contexts, but it is recommended to use "&amp;", which is always safe.
    • Another possibility is that you forgot to close quotes in a previous tag.
  227. Error Line 724, Column 517: element "embed" undefined
    …tion/x-shockwave-flash" flashvars="vid=21390524&"></embed></object></div></div>

    You have used the element named above in your document, but the document type you are using does not define an element of that name. This error is often caused by:

    • incorrect use of the "Strict" document type with a document that uses frames (e.g. you must use the "Frameset" document type to get the "<frameset>" element),
    • by using vendor proprietary extensions such as "<spacer>" or "<marquee>" (this is usually fixed by using CSS to achieve the desired effect instead).
    • by using upper-case tags in XHTML (in XHTML attributes and elements must be all lower-case).
  228. Error Line 730, Column 219: "allowfullscreen" is not a member of a group specified for any attribute
    ….youtube.com/embed/O4DKyemG8aA" frameborder="0" allowfullscreen></iframe></div>

  229. Warning Line 741, Column 206: reference not terminated by REFC delimiter
    …micals-act/?utm_source=Blog&utm_medium=Badge&utm_campaign=Kid-Safe-Pure-Natura…

    If you meant to include an entity that starts with "&", then you should terminate it with ";". Another reason for this error message is that you inadvertently created an entity by failing to escape an "&" character just before this text.

  230. Warning Line 741, Column 206: reference to external entity in attribute value
    …micals-act/?utm_source=Blog&utm_medium=Badge&utm_campaign=Kid-Safe-Pure-Natura…

    This is generally the sign of an ampersand that was not properly escaped for inclusion in an attribute, in a href for example. You will need to escape all instances of '&' into '&amp;'.

  231. Error Line 741, Column 206: reference to entity "utm_medium" for which no system identifier could be generated
    …micals-act/?utm_source=Blog&utm_medium=Badge&utm_campaign=Kid-Safe-Pure-Natura…

    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.

  232. Info Line 695, Column 96: entity was defined here
    …id-safe-chemicals-act/?utm_source=Blog&utm_medium=Badge&utm_campaign=Kid-Safe-…
  233. Warning Line 741, Column 225: reference not terminated by REFC delimiter
    …rce=Blog&utm_medium=Badge&utm_campaign=Kid-Safe-Pure-Natural-Diva"><img alt="K…

    If you meant to include an entity that starts with "&", then you should terminate it with ";". Another reason for this error message is that you inadvertently created an entity by failing to escape an "&" character just before this text.

  234. Warning Line 741, Column 225: reference to external entity in attribute value
    …rce=Blog&utm_medium=Badge&utm_campaign=Kid-Safe-Pure-Natural-Diva"><img alt="K…

    This is generally the sign of an ampersand that was not properly escaped for inclusion in an attribute, in a href for example. You will need to escape all instances of '&' into '&amp;'.

  235. Error Line 741, Column 225: reference to entity "utm_campaign" for which no system identifier could be generated
    …rce=Blog&utm_medium=Badge&utm_campaign=Kid-Safe-Pure-Natural-Diva"><img alt="K…

    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.

  236. Info Line 695, Column 113: entity was defined here
    …-act/?utm_source=Blog&utm_medium=Badge&utm_campaign=Kid-Safe-Pure-Natural-Diva…
  237. Error Line 742, Column 7: end tag for "div" omitted, but OMITTAG NO was specified
    		</li>

    You may have neglected to close an element, or perhaps you meant to "self-close" an element, that is, ending it with "/>" instead of ">".

  238. Info Line 741, Column 56: start tag was here
    …539669" class="widget widget_text">			<div class="textwidget"><div align="cent…
  239. Error Line 792, Column 274: end tag for "br" omitted, but OMITTAG NO was specified
    …s/circlebadge1.png" alt="Top Organic Blog" border="0" /></a><br><font size="1">

    You may have neglected to close an element, or perhaps you meant to "self-close" an element, that is, ending it with "/>" instead of ">".

  240. Info Line 792, Column 270: start tag was here
    …s/circlebadge1.png" alt="Top Organic Blog" border="0" /></a><br><font size="1">
  241. Error Line 793, Column 6: end tag for "font" omitted, but OMITTAG NO was specified
    </div>

    You may have neglected to close an element, or perhaps you meant to "self-close" an element, that is, ending it with "/>" instead of ">".

  242. Info Line 792, Column 274: start tag was here
    …s/circlebadge1.png" alt="Top Organic Blog" border="0" /></a><br><font size="1">
  243. Warning Line 836, Column 191: character "&" is the first character of a delimiter but occurred as data
    …title='MyFreeCopyright.com Registered & Protected' ><img src='http://storage.m…

    This message may appear in several cases:

    • You tried to include the "<" character in your page: you should escape it as "&lt;"
    • You used an unescaped ampersand "&": this may be valid in some contexts, but it is recommended to use "&amp;", which is always safe.
    • Another possibility is that you forgot to close quotes in a previous tag.
  244. Warning Line 836, Column 305: character "&" is the first character of a delimiter but occurred as data
    …' alt='MyFreeCopyright.com Registered & Protected' title='MyFreeCopyright.com …

    This message may appear in several cases:

    • You tried to include the "<" character in your page: you should escape it as "&lt;"
    • You used an unescaped ampersand "&": this may be valid in some contexts, but it is recommended to use "&amp;", which is always safe.
    • Another possibility is that you forgot to close quotes in a previous tag.
  245. Warning Line 836, Column 356: character "&" is the first character of a delimiter but occurred as data
    …title='MyFreeCopyright.com Registered & Protected' width='145px' height='38px'…

    This message may appear in several cases:

    • You tried to include the "<" character in your page: you should escape it as "&lt;"
    • You used an unescaped ampersand "&": this may be valid in some contexts, but it is recommended to use "&amp;", which is always safe.
    • Another possibility is that you forgot to close quotes in a previous tag.
  246. Error Line 861, Column 269: end tag for "img" omitted, but OMITTAG NO was specified
    …m/images/badges/travelgems/tgem_125_b_3.gif" alt="UpTake thinks I'm a Gem"></a>

    You may have neglected to close an element, or perhaps you meant to "self-close" an element, that is, ending it with "/>" instead of ">".

  247. Info Line 861, Column 145: start tag was here
    …com/" title="UpTake thinks I'm a Gem"><img src="http://uptake-assets.s3.amazon…
  248. Error Line 865, Column 7: end tag for "div" omitted, but OMITTAG NO was specified
    		</li>

    You may have neglected to close an element, or perhaps you meant to "self-close" an element, that is, ending it with "/>" instead of ">".

  249. Info Line 864, Column 55: start tag was here
    …539679" class="widget widget_text">			<div class="textwidget"><div align="cent…
  250. Error Line 866, Column 640: required attribute "alt" not specified
    …ogo_small.png" title="NetworkedBlogs"/></a></div><div id="networkedblogs_nwidg…

    The attribute given above is required for an element that you've used, but you have omitted it. For instance, in most HTML and XHTML document types the "type" attribute is required on the "script" element and the "alt" attribute is required for the "img" element.

    Typical values for type are type="text/css" for <style> and type="text/javascript" for <script>.

  251. Error Line 870, Column 7: an attribute specification must start with a name or name token
    <style="text-align: center;"><a href="http://www.prchecker.info/" title="PageRa…

    An attribute name (and some attribute values) must start with one of a restricted set of characters. This error usually indicates that you have failed to add a closing quotation mark on a previous attribute value (so the attribute value looks like the start of a new attribute) or have used an attribute that is not defined (usually a typo in a common attribute name).

  252. Error Line 870, Column 7: document type does not allow element "style" here
    <style="text-align: center;"><a href="http://www.prchecker.info/" title="PageRa…

    The element named above was found in a context where it is not allowed. This could mean that you have incorrectly nested elements -- such as a "style" element in the "body" section instead of inside "head" -- or two elements that overlap (which is not allowed).

    One common cause for this error is the use of XHTML syntax in HTML documents. Due to HTML's rules of implicitly closed elements, this error can create cascading effects. For instance, using XHTML's "self-closing" tags for "meta" and "link" in the "head" section of a HTML document may cause the parser to infer the end of the "head" section and the beginning of the "body" section (where "link" and "meta" are not allowed; hence the reported error).

  253. Error Line 870, Column 113: document type does not allow element "a" here
    …ef="http://www.prchecker.info/" title="PageRank Checking Icon" target="_blank">

    The element named above was found in a context where it is not allowed. This could mean that you have incorrectly nested elements -- such as a "style" element in the "body" section instead of inside "head" -- or two elements that overlap (which is not allowed).

    One common cause for this error is the use of XHTML syntax in HTML documents. Due to HTML's rules of implicitly closed elements, this error can create cascading effects. For instance, using XHTML's "self-closing" tags for "meta" and "link" in the "head" section of a HTML document may cause the parser to infer the end of the "head" section and the beginning of the "body" section (where "link" and "meta" are not allowed; hence the reported error).

  254. Warning Line 871, Column 93: cannot generate system identifier for general entity "tag"
    …0cDovL3d3dy5wdXJlbmF0dXJhbGRpdmEuY29t&tag=2" alt="PageRank Checking Icon" styl…

    An entity reference was found in the document, but there is no reference by that name defined. Often this is caused by misspelling the reference name, unencoded ampersands, or by leaving off the trailing semicolon (;). The most common cause of this error is unencoded ampersands in URLs as described by the WDG in "Ampersands in URLs".

    Entity references start with an ampersand (&) and end with a semicolon (;). If you want to use a literal ampersand in your document you must encode it as "&amp;" (even inside URLs!). Be careful to end entity references with a semicolon or your entity reference may get interpreted in connection with the following text. Also keep in mind that named entity references are case-sensitive; &Aelig; and &aelig; are different characters.

    If this error appears in some markup generated by PHP's session handling code, this article has explanations and solutions to your problem.

    Note that in most documents, errors related to entity references will trigger up to 5 separate messages from the Validator. Usually these will all disappear when the original problem is fixed.

  255. Error Line 871, Column 93: general entity "tag" not defined and no default entity
    …0cDovL3d3dy5wdXJlbmF0dXJhbGRpdmEuY29t&tag=2" alt="PageRank Checking Icon" styl…

    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.

  256. Warning Line 871, Column 96: reference not terminated by REFC delimiter
    …ovL3d3dy5wdXJlbmF0dXJhbGRpdmEuY29t&tag=2" alt="PageRank Checking Icon" style="…

    If you meant to include an entity that starts with "&", then you should terminate it with ";". Another reason for this error message is that you inadvertently created an entity by failing to escape an "&" character just before this text.

  257. Warning Line 871, Column 96: reference to external entity in attribute value
    …ovL3d3dy5wdXJlbmF0dXJhbGRpdmEuY29t&tag=2" alt="PageRank Checking Icon" style="…

    This is generally the sign of an ampersand that was not properly escaped for inclusion in an attribute, in a href for example. You will need to escape all instances of '&' into '&amp;'.

  258. Error Line 871, Column 96: reference to entity "tag" for which no system identifier could be generated
    …ovL3d3dy5wdXJlbmF0dXJhbGRpdmEuY29t&tag=2" alt="PageRank Checking Icon" style="…

    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.

  259. Info Line 871, Column 92: entity was defined here
    …R0cDovL3d3dy5wdXJlbmF0dXJhbGRpdmEuY29t&tag=2" alt="PageRank Checking Icon" sty…
  260. Error Line 873, Column 85: document type does not allow element "script" here
    ….attracta.com/badge/js/591876/core.js"></script><a href="http://cdn.attracta.c…

    The element named above was found in a context where it is not allowed. This could mean that you have incorrectly nested elements -- such as a "style" element in the "body" section instead of inside "head" -- or two elements that overlap (which is not allowed).

    One common cause for this error is the use of XHTML syntax in HTML documents. Due to HTML's rules of implicitly closed elements, this error can create cascading effects. For instance, using XHTML's "self-closing" tags for "meta" and "link" in the "head" section of a HTML document may cause the parser to infer the end of the "head" section and the beginning of the "body" section (where "link" and "meta" are not allowed; hence the reported error).

  261. Error Line 873, Column 153: document type does not allow element "a" here
    …attracta.com/badge/verify/591876.html"><img alt="Increase your website traffic…

    The element named above was found in a context where it is not allowed. This could mean that you have incorrectly nested elements -- such as a "style" element in the "body" section instead of inside "head" -- or two elements that overlap (which is not allowed).

    One common cause for this error is the use of XHTML syntax in HTML documents. Due to HTML's rules of implicitly closed elements, this error can create cascading effects. For instance, using XHTML's "self-closing" tags for "meta" and "link" in the "head" section of a HTML document may cause the parser to infer the end of the "head" section and the beginning of the "body" section (where "link" and "meta" are not allowed; hence the reported error).

  262. Error Line 873, Column 288: end tag for "img" omitted, but OMITTAG NO was specified
    …m" style="border:0px" src="http://cdn.attracta.com/badge/img/591876/2.png"></a>

    You may have neglected to close an element, or perhaps you meant to "self-close" an element, that is, ending it with "/>" instead of ">".

  263. Info Line 873, Column 154: start tag was here
    …ttracta.com/badge/verify/591876.html"><img alt="Increase your website traffic …
  264. Error Line 874, Column 27: end tag for "style" omitted, but OMITTAG NO was specified
    <!-- END Attracta --></div>

    You may have neglected to close an element, or perhaps you meant to "self-close" an element, that is, ending it with "/>" instead of ">".

  265. Info Line 870, Column 1: start tag was here
    <style="text-align: center;"><a href="http://www.prchecker.info/" title="PageRa…
  266. Warning Line 919, Column 7: S separator in comment declaration
    <!---- Pinterest Image Pin included this line ------->

    This may happen if you have consecutive comments but did not close one of them properly. The proper syntax for comments is <!-- my comment -->.

  267. Error Line 919, Column 8: invalid comment declaration: found name start character outside comment but inside comment declaration
    <!---- Pinterest Image Pin included this line ------->

  268. Info Line 919, Column 1: comment declaration started here
    <!---- Pinterest Image Pin included this line ------->
  269. Warning Line 920, Column 7: S separator in comment declaration
    <!---- Shane Jones - www.shanejones.co.uk -->

    This may happen if you have consecutive comments but did not close one of them properly. The proper syntax for comments is <!-- my comment -->.

  270. Error Line 920, Column 8: invalid comment declaration: found name start character outside comment but inside comment declaration
    <!---- Shane Jones - www.shanejones.co.uk -->

  271. Info Line 920, Column 1: comment declaration started here
    <!---- Shane Jones - www.shanejones.co.uk -->
  272. Warning Line 943, Column 7: S separator in comment declaration
    <!---- END Pinterest Image Pin -------------->

    This may happen if you have consecutive comments but did not close one of them properly. The proper syntax for comments is <!-- my comment -->.

  273. Error Line 943, Column 8: invalid comment declaration: found name start character outside comment but inside comment declaration
    <!---- END Pinterest Image Pin -------------->

  274. Info Line 943, Column 1: comment declaration started here
    <!---- END Pinterest Image Pin -------------->
  275. Warning Line 968, Column 20: character "<" is the first character of a delimiter but occurred as data
            if ( count <= 2 ) {

    This message may appear in several cases:

    • You tried to include the "<" character in your page: you should escape it as "&lt;"
    • You used an unescaped ampersand "&": this may be valid in some contexts, but it is recommended to use "&amp;", which is always safe.
    • Another possibility is that you forgot to close quotes in a previous tag.
  276. Error Line 982, Column 175: document type does not allow element "link" here
    …/pinterest-image-pin/sdj_pip_main.css?ver=3.3.2' type='text/css' media='all' />

    The element named above was found in a context where it is not allowed. This could mean that you have incorrectly nested elements -- such as a "style" element in the "body" section instead of inside "head" -- or two elements that overlap (which is not allowed).

    One common cause for this error is the use of XHTML syntax in HTML documents. Due to HTML's rules of implicitly closed elements, this error can create cascading effects. For instance, using XHTML's "self-closing" tags for "meta" and "link" in the "head" section of a HTML document may cause the parser to infer the end of the "head" section and the beginning of the "body" section (where "link" and "meta" are not allowed; hence the reported error).

↑ Top

Source Listing

Below is the source input I used for this validation:

  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml" dir="ltr" lang="en-US" xml:lang="en-US">
  3. <head profile="http://gmpg.org/xfn/11">
  4. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
  5. <meta name="distribution" content="global" />
  6. <meta name="language" content="en" />
  7. <title>Pure Natural Living: Simple, healthy, less toxic, eco conscious, organic and fabulous!</title>
  8. <link rel="Shortcut Icon" href="http://www.purenaturaldiva.com/wp-content/themes/lifestyle_31/images/favicon.ico" type="image/x-icon" />
  9. <link rel="stylesheet" href="http://www.purenaturaldiva.com/wp-content/themes/lifestyle_31/style.css" type="text/css" media="screen" />
  10. <link rel="alternate" type="application/rss+xml" title="Pure Natural Diva RSS Feed" href="http://www.purenaturaldiva.com/feed/" />
  11. <link rel="alternate" type="application/atom+xml" title="Pure Natural Diva Atom Feed" href="http://www.purenaturaldiva.com/feed/atom/" />
  12. <link rel="pingback" href="http://www.purenaturaldiva.com/xmlrpc.php" />
  13. <style type="text/css">
  14. .sp_link_16, .sp_link_32 {
  15. cursor: pointer;
  16. display: block;
  17. overflow: hidden;
  18. }
  19. .sp_link_16 {
  20. width: 16px;
  21. height: 16px;
  22. }
  23. .sp_link_32 {
  24. width: 32px;
  25. height: 32px;
  26. }
  27. .sp_linkback {
  28. text-align : center;
  29. display : block;
  30. }
  31. #sp_div_outer {
  32. }
  33. </style>
  34. <link rel='stylesheet' id='tweetable-frontend-css' href='http://www.purenaturaldiva.com/wp-content/plugins/tweetable/main_css.css?ver=3.3.2' type='text/css' media='all' />
  35. <link rel='stylesheet' id='contact-form-7-css' href='http://www.purenaturaldiva.com/wp-content/plugins/contact-form-7/styles.css?ver=3.1.1' type='text/css' media='all' />
  36. <link rel='stylesheet' id='commentluv_style-css' href='http://www.purenaturaldiva.com/wp-content/plugins/commentluv/css/commentluv.css?ver=3.3.2' type='text/css' media='all' />
  37. <link rel='stylesheet' id='gkl_postavatar_css-css' href='http://www.purenaturaldiva.com/wp-content/plugins/post-avatar/head/gkl-postavatar.css' type='text/css' media='all' />
  38. <script type='text/javascript' src='https://ajax.googleapis.com/ajax/libs/jquery/1.6.0/jquery.min.js?ver=3.3.2'></script>
  39. <script type='text/javascript'>
  40. /* <![CDATA[ */
  41. var cl_settings = {"name":"author","url":"url","comment":"comment","email":"email","infopanel":null,"default_on":"on","default_on_admin":null,"cl_version":"2.90.9.7","images":"http:\/\/www.purenaturaldiva.com\/wp-content\/plugins\/commentluv\/images\/","api_url":"http:\/\/www.purenaturaldiva.com\/wp-admin\/admin-ajax.php","_fetch":"2eab6c1699","_info":"f1c4023fb3","infoback":"white","infotext":null,"template_insert":"","logged_in":"","refer":"http:\/\/www.purenaturaldiva.com\/2012\/05\/key-west-images-a-romantic-getaway-to-the-reach-hotel\/","no_url_message":"Please enter a URL and then click the CommentLuv checkbox if you want to add your last blog post","no_http_message":"Please use http:\/\/ in front of your url","no_url_logged_in_message":"You need to visit your profile in the dashboard and update your details with your site URL","no_info_message":"No info was available or an error occured"};
  42. /* ]]> */
  43. </script>
  44. <script type='text/javascript' src='http://www.purenaturaldiva.com/wp-content/plugins/commentluv/js/commentluv.js?ver=3.3.2'></script>
  45. <link rel="EditURI" type="application/rsd+xml" title="RSD" href="http://www.purenaturaldiva.com/xmlrpc.php?rsd" />
  46. <link rel="wlwmanifest" type="application/wlwmanifest+xml" href="http://www.purenaturaldiva.com/wp-includes/wlwmanifest.xml" />
  47. <meta name="generator" content="WordPress 3.3.2" />
  48. <link rel='shortlink' href='http://wp.me/1rEP0' />
  49. <!-- All in One SEO Pack 1.6.14.1 by Michael Torbert of Semper Fi Web Design[410,435] -->
  50. <meta name="description" content="Simplify your life. Detoxify your life. Eco Savvy living without giving up style and performance. Pure Natural Living." />
  51. <meta name="keywords" content="organic, green, natural, pure, skincare, health, beauty, reviews, giveaways, information, recipe, whole living, eco, savvy" />
  52. <link rel="canonical" href="http://www.purenaturaldiva.com/" />
  53. <!-- /all in one seo pack -->
  54. <link rel="stylesheet" href="http://www.purenaturaldiva.com/wp-content/plugins/digg-digg/include/../css/diggdigg-style.css?ver=5.2.3" type="text/css" media="screen" /><link rel="image_src" href="http://www.purenaturaldiva.com/wp-content/uploads/2010/02/Optimized.41_2_3-150x150.jpg" />
  55. <!-- begin gallery scripts -->
  56. <link rel="stylesheet" href="http://www.purenaturaldiva.com/wp-content/plugins/featured-content-gallery/css/jd.gallery.css.php" type="text/css" media="screen" charset="utf-8"/>
  57. <link rel="stylesheet" href="http://www.purenaturaldiva.com/wp-content/plugins/featured-content-gallery/css/jd.gallery.css" type="text/css" media="screen" charset="utf-8"/>
  58. <script type="text/javascript" src="http://www.purenaturaldiva.com/wp-content/plugins/featured-content-gallery/scripts/mootools.v1.11.js"></script>
  59. <script type="text/javascript" src="http://www.purenaturaldiva.com/wp-content/plugins/featured-content-gallery/scripts/jd.gallery.js.php"></script>
  60. <script type="text/javascript" src="http://www.purenaturaldiva.com/wp-content/plugins/featured-content-gallery/scripts/jd.gallery.transitions.js"></script>
  61. <!-- end gallery scripts -->
  62. <!---- Pinterest Image Pin included this line ------->
  63. <!---- Shane Jones - www.shanejones.co.uk -->
  64. <link type="text/css" rel="stylesheet" href="http://www.purenaturaldiva.com/wp-content/plugins/pinterest_image_pin/sdj_pip_main.css" />
  65. <!---- END Pinterest Image Pin -------------->
  66. <link rel='image_src' href='http://www.purenaturaldiva.com/wp-content/uploads/2012/04/photo6.jpg' />
  67. <!-- Twitter @Anywhere Plus v2.0 by GeekRMX - http://www.ngeeks.com -->
  68. <script src="http://platform.twitter.com/anywhere.js?id=4jdTnnYfGDxXDy4GD6r4Rg&v=1" type="text/javascript"></script>
  69. <script type="text/javascript">
  70. twttr.anywhere(function (T) {
  71. // configure the @anywhere environment
  72. T.linkifyUsers();
  73. T.hovercards();
  74. });
  75. </script>
  76. <!-- /Twitter @Anywhere Plus -->
  77. <style type="text/css" media="all">
  78. /* <![CDATA[ */
  79. @import url("http://www.purenaturaldiva.com/wp-content/plugins/wp-table-reloaded/css/plugin.css?ver=1.9.3");
  80. @import url("http://www.purenaturaldiva.com/wp-content/plugins/wp-table-reloaded/css/datatables.css?ver=1.9.3");
  81. /* ]]> */
  82. </style>
  83. <script type="text/javascript"><!--//--><![CDATA[//><!--
  84. sfHover = function() {
  85. if (!document.getElementsByTagName) return false;
  86. var sfEls = document.getElementById("nav").getElementsByTagName("li");
  87. // if you only have one main menu - delete the line below //
  88. var sfEls1 = document.getElementById("subnav").getElementsByTagName("li");
  89. //
  90. for (var i=0; i<sfEls.length; i++) {
  91. sfEls[i].onmouseover=function() {
  92. this.className+=" sfhover";
  93. }
  94. sfEls[i].onmouseout=function() {
  95. this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
  96. }
  97. }
  98. // if you only have one main menu - delete the "for" loop below //
  99. for (var i=0; i<sfEls1.length; i++) {
  100. sfEls1[i].onmouseover=function() {
  101. this.className+=" sfhover1";
  102. }
  103. sfEls1[i].onmouseout=function() {
  104. this.className=this.className.replace(new RegExp(" sfhover1\\b"), "");
  105. }
  106. }
  107. //
  108. }
  109. if (window.attachEvent) window.attachEvent("onload", sfHover);
  110. //--><!]]></script>
  111. </head>
  112. <body>
  113. <div id="wrap">
  114. <div id="topnavbar">
  115. <div class="topnavbarleft">
  116. <p><script src="http://www.purenaturaldiva.com/wp-content/themes/lifestyle_31/javascript/date.js" type="text/javascript"></script></p>
  117. </div>
  118. <div class="topnavbarright">
  119. <p><a href="http://www.purenaturaldiva.com/feed/rss/"><img style="vertical-align:middle" src="http://www.purenaturaldiva.com/wp-content/themes/lifestyle_31/images/rss.gif" alt="Subscribe to Pure Natural Diva" /></a><a href="http://www.purenaturaldiva.com/feed/rss/">News Feed</a><a href="http://www.purenaturaldiva.com/comments/feed/"><img style="vertical-align:middle;margin-left:10px;" src="http://www.purenaturaldiva.com/wp-content/themes/lifestyle_31/images/rss.gif" alt="Subscribe to Pure Natural Diva" /></a><a href="http://www.purenaturaldiva.com/comments/feed/">Comments</a></p>
  120. </div>
  121. </div>
  122. <div id="header">
  123. <div class="headerleft">
  124. <a href="http://www.purenaturaldiva.com/"><img src="http://www.purenaturaldiva.com/wp-content/themes/lifestyle_31/images/logo.png" alt="Pure Natural Diva" /></a>
  125. </div>
  126. <!--To define the 468x60 ad, go to your WP dashboard and go to Appearance > Widgets. Select 468x60 Header Banner and then enter your add code into a text widget-->
  127. <div class="headerright">
  128. <ul id="headerwidgeted">
  129. <li><a href="#"><img src="http://www.purenaturaldiva.com/wp-content/themes/lifestyle_31/images/468x60.gif" alt="Advertisement" /></a></li>
  130. </ul>
  131. </div>
  132. </div>
  133. <div id="navbar">
  134. <div id="navbarleft">
  135. <ul id="nav">
  136. <li><a href="http://www.purenaturaldiva.com">Home</a></li>
  137. <li class="page_item page-item-4110"><a href="http://www.purenaturaldiva.com/media-services/">Media Services</a>
  138. <ul class='children'>
  139. <li class="page_item page-item-3498"><a href="http://www.purenaturaldiva.com/media-services/diva-social-media-consulting-services/">Media Services for Brands</a>
  140. <ul class='children'>
  141. <li class="page_item page-item-11006"><a href="http://www.purenaturaldiva.com/media-services/diva-social-media-consulting-services/pnd-media-kit/">PND Media Kit</a></li>
  142. </ul>
  143. </li>
  144. <li class="page_item page-item-4765"><a href="http://www.purenaturaldiva.com/media-services/media-services-for-bloggers/">Media Services for Bloggers</a></li>
  145. <li class="page_item page-item-4741"><a href="http://www.purenaturaldiva.com/media-services/diva-facts-figures-proof/">Pure Natural Diva Stats</a></li>
  146. <li class="page_item page-item-466"><a href="http://www.purenaturaldiva.com/media-services/publicrelations/">Public Relations</a></li>
  147. <li class="page_item page-item-1425"><a href="http://www.purenaturaldiva.com/media-services/advertising/">Advertising</a></li>
  148. </ul>
  149. </li>
  150. <li class="page_item page-item-8806"><a href="http://www.purenaturaldiva.com/natural-organic-beauty-personalcare-product-guide-database-resource/">PND Product Guide</a></li>
  151. <li class="page_item page-item-10194"><a href="http://www.purenaturaldiva.com/pure-natural-4d-event/">#diva4d</a>
  152. <ul class='children'>
  153. <li class="page_item page-item-10287"><a href="http://www.purenaturaldiva.com/pure-natural-4d-event/diva4d-event-partners-in-kind-donors/">Diva4d Event Partners &#038; In Kind Donors</a></li>
  154. </ul>
  155. </li>
  156. <li class="page_item page-item-287"><a href="http://www.purenaturaldiva.com/about-2/">About PND</a>
  157. <ul class='children'>
  158. <li class="page_item page-item-2"><a href="http://www.purenaturaldiva.com/about-2/about/">Welcome</a></li>
  159. <li class="page_item page-item-7748"><a href="http://www.purenaturaldiva.com/about-2/meet-our-writers/">Meet Our Writers</a></li>
  160. <li class="page_item page-item-8 current_page_parent"><a href="http://www.purenaturaldiva.com/about-2/my-approach/">Tania&#8217;s Approach</a>
  161. <ul class='children'>
  162. <li class="page_item page-item-13"><a href="http://www.purenaturaldiva.com/about-2/my-approach/the-food-we-eat/">The Food We Eat</a></li>
  163. <li class="page_item page-item-567"><a href="http://www.purenaturaldiva.com/about-2/my-approach/my-shopping-lists/">My Shopping Lists</a>
  164. <ul class='children'>
  165. <li class="page_item page-item-569"><a href="http://www.purenaturaldiva.com/about-2/my-approach/my-shopping-lists/grocery-items/">Grocery Items</a></li>
  166. </ul>
  167. </li>
  168. <li class="page_item page-item-552"><a href="http://www.purenaturaldiva.com/about-2/my-approach/glossary-of-abbreviations/">Glossary of Abbreviations</a></li>
  169. <li class="page_item page-item-2275"><a href="http://www.purenaturaldiva.com/about-2/my-approach/green-your/">Green Your&#8230;.</a></li>
  170. </ul>
  171. </li>
  172. <li class="page_item page-item-6559"><a href="http://www.purenaturaldiva.com/about-2/101-things-about-me/">101 Things You May Not Know About Tania</a></li>
  173. <li class="page_item page-item-648"><a href="http://www.purenaturaldiva.com/about-2/subscribe-to-pure-natural-diva/">Pure Natural Diva Newsletter</a></li>
  174. <li class="page_item page-item-459"><a href="http://www.purenaturaldiva.com/about-2/about-diva-reviews/">About PND Reviews</a></li>
  175. <li class="page_item page-item-1218"><a href="http://www.purenaturaldiva.com/about-2/disclaimer-and-terms-of-use/">Terms of Use</a></li>
  176. </ul>
  177. </li>
  178. <li class="page_item page-item-1550"><a href="http://www.purenaturaldiva.com/divas-blogroll/">Blogroll</a>
  179. <ul class='children'>
  180. <li class="page_item page-item-5499"><a href="http://www.purenaturaldiva.com/divas-blogroll/skinny-scoop/">Skinny Scoop!</a></li>
  181. <li class="page_item page-item-7094"><a href="http://www.purenaturaldiva.com/divas-blogroll/social-media-moms/">Social Media Moms</a></li>
  182. <li class="page_item page-item-1580"><a href="http://www.purenaturaldiva.com/divas-blogroll/diva-link-exchanges/">Link Exchanges</a></li>
  183. <li class="page_item page-item-2270"><a href="http://www.purenaturaldiva.com/divas-blogroll/diva-hangouts/">Web Hangouts</a>
  184. <ul class='children'>
  185. <li class="page_item page-item-1934"><a href="http://www.purenaturaldiva.com/divas-blogroll/diva-hangouts/diva-round-the-web/">Around the Web</a></li>
  186. </ul>
  187. </li>
  188. </ul>
  189. </li>
  190. </ul>
  191. </div>
  192. <div id="navbarright">
  193. <form id="searchform" method="get" action="/index.php">
  194. <input type="text" value="Search this website..." name="s" id="searchbox" onfocus="if (this.value == 'Search this website...') {this.value = '';}" onblur="if (this.value == '') {this.value = 'Search this website...';}" />
  195. <input type="submit" id="searchbutton" value="GO" /></form>
  196. </div>
  197. </div>
  198. <div style="clear:both;"></div>
  199. <div id="subnavbar">
  200. <ul id="subnav">
  201. <li class="cat-item cat-item-853"><a href="http://www.purenaturaldiva.com/category/beauty-fashion/" title="View all posts filed under Beauty">Beauty</a>
  202. <ul class='children'>
  203. <li class="cat-item cat-item-448"><a href="http://www.purenaturaldiva.com/category/beauty-fashion/dude-grooming/" title="View all posts filed under Dude&#039;s">Dude&#039;s</a>
  204. </li>
  205. <li class="cat-item cat-item-7"><a href="http://www.purenaturaldiva.com/category/beauty-fashion/personal-care-products/" title="View all posts filed under Personal Care Products">Personal Care Products</a>
  206. </li>
  207. <li class="cat-item cat-item-18"><a href="http://www.purenaturaldiva.com/category/beauty-fashion/skin-care/" title="View all posts filed under Skin Care">Skin Care</a>
  208. </li>
  209. </ul>
  210. </li>
  211. <li class="cat-item cat-item-1072"><a href="http://www.purenaturaldiva.com/category/community-2/" title="View all posts filed under Community">Community</a>
  212. </li>
  213. <li class="cat-item cat-item-5"><a href="http://www.purenaturaldiva.com/category/parenting/" title="View all posts filed under Family &amp; Parenting">Family &amp; Parenting</a>
  214. <ul class='children'>
  215. <li class="cat-item cat-item-278"><a href="http://www.purenaturaldiva.com/category/parenting/back-to-school/" title="View all posts filed under Back To School">Back To School</a>
  216. </li>
  217. <li class="cat-item cat-item-15"><a href="http://www.purenaturaldiva.com/category/parenting/eco-friendly-green-infant-childcare/" title="View all posts filed under Infant &amp; Childcare">Infant &amp; Childcare</a>
  218. </li>
  219. <li class="cat-item cat-item-16"><a href="http://www.purenaturaldiva.com/category/parenting/natural-childbirth/" title="View all posts filed under Natural Childbirth">Natural Childbirth</a>
  220. </li>
  221. </ul>
  222. </li>
  223. <li class="cat-item cat-item-9"><a href="http://www.purenaturaldiva.com/category/food-diet/" title="View all posts filed under Food &amp; Nutrition">Food &amp; Nutrition</a>
  224. <ul class='children'>
  225. <li class="cat-item cat-item-218"><a href="http://www.purenaturaldiva.com/category/food-diet/label-reading-phd/" title="View all posts filed under Label Reading PHD">Label Reading PHD</a>
  226. </li>
  227. <li class="cat-item cat-item-119"><a href="http://www.purenaturaldiva.com/category/food-diet/my-pantry/" title="View all posts filed under My Pantry">My Pantry</a>
  228. </li>
  229. <li class="cat-item cat-item-17"><a href="http://www.purenaturaldiva.com/category/food-diet/preservatives-additives/" title="View all posts filed under Preservatives &amp; Additives">Preservatives &amp; Additives</a>
  230. </li>
  231. <li class="cat-item cat-item-172"><a href="http://www.purenaturaldiva.com/category/food-diet/healthy-recipes-whole-grain/" title="View all posts filed under Recipes">Recipes</a>
  232. </li>
  233. </ul>
  234. </li>
  235. <li class="cat-item cat-item-663"><a href="http://www.purenaturaldiva.com/category/organic-pure-natural-living/" title="View all posts filed under Pure Natural Living">Pure Natural Living</a>
  236. <ul class='children'>
  237. <li class="cat-item cat-item-1220"><a href="http://www.purenaturaldiva.com/category/organic-pure-natural-living/vlogmom/" title="View all posts filed under #VlogMom">#VlogMom</a>
  238. </li>
  239. <li class="cat-item cat-item-242"><a href="http://www.purenaturaldiva.com/category/organic-pure-natural-living/ask-tania/" title="View all posts filed under Ask Tania">Ask Tania</a>
  240. </li>
  241. <li class="cat-item cat-item-6"><a href="http://www.purenaturaldiva.com/category/organic-pure-natural-living/natural-beauty-organic-pure-natural-living/" title="View all posts filed under Better Beauty">Better Beauty</a>
  242. </li>
  243. <li class="cat-item cat-item-1143"><a href="http://www.purenaturaldiva.com/category/organic-pure-natural-living/savvy-fashion/" title="View all posts filed under Fashion">Fashion</a>
  244. </li>
  245. <li class="cat-item cat-item-361"><a href="http://www.purenaturaldiva.com/category/organic-pure-natural-living/diva-online/" title="View all posts filed under Find PND Online">Find PND Online</a>
  246. </li>
  247. <li class="cat-item cat-item-1144"><a href="http://www.purenaturaldiva.com/category/organic-pure-natural-living/fitness/" title="View all posts filed under Fitness">Fitness</a>
  248. </li>
  249. <li class="cat-item cat-item-11"><a href="http://www.purenaturaldiva.com/category/organic-pure-natural-living/health-wellness-natural-organic-remedies/" title="View all posts filed under Health &amp; Wellness">Health &amp; Wellness</a>
  250. </li>
  251. <li class="cat-item cat-item-852"><a href="http://www.purenaturaldiva.com/category/organic-pure-natural-living/house-garden-eco-green/" title="View all posts filed under Home">Home</a>
  252. <ul class='children'>
  253. <li class="cat-item cat-item-8"><a href="http://www.purenaturaldiva.com/category/organic-pure-natural-living/house-garden-eco-green/green-clean-house/" title="View all posts filed under Clean House">Clean House</a>
  254. </li>
  255. <li class="cat-item cat-item-3"><a href="http://www.purenaturaldiva.com/category/organic-pure-natural-living/house-garden-eco-green/green-entertaining-easy/" title="View all posts filed under Entertaining">Entertaining</a>
  256. </li>
  257. <li class="cat-item cat-item-4"><a href="http://www.purenaturaldiva.com/category/organic-pure-natural-living/house-garden-eco-green/garden-home/" title="View all posts filed under Garden">Garden</a>
  258. </li>
  259. <li class="cat-item cat-item-691"><a href="http://www.purenaturaldiva.com/category/organic-pure-natural-living/house-garden-eco-green/gift-guide/" title="View all posts filed under Gift Guide">Gift Guide</a>
  260. </li>
  261. <li class="cat-item cat-item-10"><a href="http://www.purenaturaldiva.com/category/organic-pure-natural-living/house-garden-eco-green/green-living/" title="View all posts filed under Green Living">Green Living</a>
  262. </li>
  263. <li class="cat-item cat-item-597"><a href="http://www.purenaturaldiva.com/category/organic-pure-natural-living/house-garden-eco-green/holidays-eco-green-savvy-holiday/" title="View all posts filed under Holidays">Holidays</a>
  264. </li>
  265. <li class="cat-item cat-item-12"><a href="http://www.purenaturaldiva.com/category/organic-pure-natural-living/house-garden-eco-green/home/" title="View all posts filed under Home">Home</a>
  266. </li>
  267. </ul>
  268. </li>
  269. <li class="cat-item cat-item-102"><a href="http://www.purenaturaldiva.com/category/organic-pure-natural-living/news/" title="View all posts filed under In the News">In the News</a>
  270. </li>
  271. <li class="cat-item cat-item-1221"><a href="http://www.purenaturaldiva.com/category/organic-pure-natural-living/made-in-the-usa/" title="View all posts filed under Made In the USA">Made In the USA</a>
  272. </li>
  273. <li class="cat-item cat-item-1217"><a href="http://www.purenaturaldiva.com/category/organic-pure-natural-living/mail-organic-pure-natural-living/" title="View all posts filed under Mail!">Mail!</a>
  274. </li>
  275. <li class="cat-item cat-item-65"><a href="http://www.purenaturaldiva.com/category/organic-pure-natural-living/save-green-natural-food-saving-ecofriendly-organic/" title="View all posts filed under Money Saving Offers">Money Saving Offers</a>
  276. </li>
  277. <li class="cat-item cat-item-73"><a href="http://www.purenaturaldiva.com/category/organic-pure-natural-living/musings/" title="View all posts filed under Musings">Musings</a>
  278. </li>
  279. <li class="cat-item cat-item-158"><a href="http://www.purenaturaldiva.com/category/organic-pure-natural-living/nitty-gritty/" title="View all posts filed under Nitty Gritty &#8211; the details">Nitty Gritty &#8211; the details</a>
  280. </li>
  281. <li class="cat-item cat-item-146"><a href="http://www.purenaturaldiva.com/category/organic-pure-natural-living/easy-green-living-solutions-information/" title="View all posts filed under Savvy Living Guide">Savvy Living Guide</a>
  282. </li>
  283. <li class="cat-item cat-item-25"><a href="http://www.purenaturaldiva.com/category/organic-pure-natural-living/green-living-simple-solutions/" title="View all posts filed under Simple Solutions">Simple Solutions</a>
  284. </li>
  285. <li class="cat-item cat-item-169"><a href="http://www.purenaturaldiva.com/category/organic-pure-natural-living/start-your-own-blog/" title="View all posts filed under Start Your Own Site">Start Your Own Site</a>
  286. <ul class='children'>
  287. <li class="cat-item cat-item-307"><a href="http://www.purenaturaldiva.com/category/organic-pure-natural-living/start-your-own-blog/entrecard-drop-list/" title="View all posts filed under Entrecard">Entrecard</a>
  288. </li>
  289. </ul>
  290. </li>
  291. <li class="cat-item cat-item-74"><a href="http://www.purenaturaldiva.com/category/organic-pure-natural-living/does-it-really-matter/" title="View all posts filed under Why Bother?">Why Bother?</a>
  292. </li>
  293. <li class="cat-item cat-item-620"><a href="http://www.purenaturaldiva.com/category/organic-pure-natural-living/wordless-wednesday/" title="View all posts filed under Wordless Wednesday">Wordless Wednesday</a>
  294. </li>
  295. <li class="cat-item cat-item-209"><a href="http://www.purenaturaldiva.com/category/organic-pure-natural-living/worth-sharing/" title="View all posts filed under Worth Sharing">Worth Sharing</a>
  296. </li>
  297. </ul>
  298. </li>
  299. <li class="cat-item cat-item-851"><a href="http://www.purenaturaldiva.com/category/review-giveaways/" title="View all posts filed under Review &amp; Giveaways">Review &amp; Giveaways</a>
  300. <ul class='children'>
  301. <li class="cat-item cat-item-285"><a href="http://www.purenaturaldiva.com/category/review-giveaways/giveaways/" title="View all posts filed under Giveaways">Giveaways</a>
  302. </li>
  303. <li class="cat-item cat-item-14"><a href="http://www.purenaturaldiva.com/category/review-giveaways/green-beauty-product-reviews/" title="View all posts filed under Reviews">Reviews</a>
  304. </li>
  305. </ul>
  306. </li>
  307. <li class="cat-item cat-item-296"><a href="http://www.purenaturaldiva.com/category/travel/" title="View all posts filed under Travel">Travel</a>
  308. <ul class='children'>
  309. <li class="cat-item cat-item-1153"><a href="http://www.purenaturaldiva.com/category/travel/hotel-review/" title="View all posts filed under Hotel Review">Hotel Review</a>
  310. </li>
  311. <li class="cat-item cat-item-1152"><a href="http://www.purenaturaldiva.com/category/travel/restaurant-review/" title="View all posts filed under Restaurant Review">Restaurant Review</a>
  312. </li>
  313. </ul>
  314. </li>
  315. <li class="cat-item cat-item-1052"><a href="http://www.purenaturaldiva.com/category/unplugged-off-topic/" title="The focus of PND is to inspire you to a greener, healthier life. On occasion I find myself wanting or needed to stray from that focus... this is my place to share those thoughts.">Unplugged &amp; Off Topic</a>
  316. </li>
  317. </ul>
  318. </div>
  319. <div style="clear:both;"></div>
  320. <div id="content">
  321. <div id="homepage">
  322. <div id="homepagetop">
  323. <div class="featuredtop">
  324. <div id="featured">
  325. <script type="text/javascript">
  326. function startGallery() {
  327. var myGallery = new gallery($('myGallery'), {
  328. timed: true
  329. });
  330. }
  331. window.addEvent('domready',startGallery);
  332. </script>
  333. <style type="text/css">
  334. .jdGallery .slideInfoZone
  335. {
  336. height: 50px;
  337. }
  338. </style>
  339. <div id="myGallery">
  340. <div class="imageElement">
  341. <h2>An Orange Juice Nation</h2>
  342. <p></p>
  343. <a href="http://www.purenaturaldiva.com/2010/11/the-juice-on-juice/" title="Read More" class="open"></a>
  344. <img src="http://www.purenaturaldiva.com/wp-content/uploads/2010/11/Picture-781.png" alt="" class="full" />
  345. <img src="" alt="" class="thumbnail" />
  346. </div>
  347. <div class="imageElement">
  348. <h2>Tips for Greener Living</h2>
  349. <p>Simple steps anyone can take to live greener.</p>
  350. <a href="http://www.purenaturaldiva.com/2010/02/diva-tips-for-greener-living/" title="Read More" class="open"></a>
  351. <img src="http://www.purenaturaldiva.com/wp-content/uploads/2010/02/main1.jpg" alt="" class="full" />
  352. <img src="" alt="" class="thumbnail" />
  353. </div>
  354. <div class="imageElement">
  355. <h2>How to Make Foaming Soap</h2>
  356. <p>Easy and inexpensive - Anyone can do it! </p>
  357. <a href="http://www.purenaturaldiva.com/2009/08/foaming-hand-soap-recipe/" title="Read More" class="open"></a>
  358. <img src="http://www.purenaturaldiva.com/wp-content/uploads/2010/02/main2.jpg" alt="" class="full" />
  359. <img src="" alt="" class="thumbnail" />
  360. </div>
  361. <div class="imageElement">
  362. <h2>How Much Radiation Does Your Phone Emit? iphone fairs poorly</h2>
  363. <p>Don't Give Up Your Phone - Minimize Your Risk</p>
  364. <a href="http://www.purenaturaldiva.com/2009/09/how-much-radiation-does-your-phone-emit-iphone-fairs-poorly/" title="Read More" class="open"></a>
  365. <img src="http://farm5.static.flickr.com/4045/4391883926_5bb56c5594_o.jpg" alt="" class="full" />
  366. <img src="" alt="" class="thumbnail" />
  367. </div>
  368. <div class="imageElement">
  369. <h2>Sephora Natural &#038; Organic: How do they Rate?</h2>
  370. <p>Organic and Natural Doesn't Always Mean Safer.</p>
  371. <a href="http://www.purenaturaldiva.com/2011/01/sephora-natural-organic-how-do-they-rate/" title="Read More" class="open"></a>
  372. <img src="http://www.purenaturaldiva.com/wp-content/uploads/2010/03/SephoraOrchid.jpg" alt="" class="full" />
  373. <img src="" alt="" class="thumbnail" />
  374. </div>
  375. <div class="imageElement">
  376. <h2>More Vegetables Please? Getting Your Kids to Eat Vegetables</h2>
  377. <p></p>
  378. <a href="http://www.purenaturaldiva.com/2010/03/more-vegetables-please/" title="Read More" class="open"></a>
  379. <img src="http://www.purenaturaldiva.com/wp-content/uploads/2009/06/dicedvegetables.jpg" alt="" class="full" />
  380. <img src="" alt="" class="thumbnail" />
  381. </div>
  382. </div>
  383. </div>
  384. </div>
  385. </div>
  386. <div id="homepageleft">
  387. <div class="hpfeatured">
  388. <h3>Food &amp; Nutrition</h3>
  389. <a href="http://www.purenaturaldiva.com/2012/04/pumpkin-pancake-recipe/" rel="bookmark"><img style="float:left;margin:0px 10px 0px 0px;" src="http://www.purenaturaldiva.com/wp-content/themes/lifestyle_31/tools/timthumb.php?src=http://www.purenaturaldiva.com/wp-content/uploads/2012/04/photo1.jpg&h=100&w=&zc=1" alt="Pumpkin Pancake Recipe" /></a>
  390. <b><a href="http://www.purenaturaldiva.com/2012/04/pumpkin-pancake-recipe/" rel="bookmark">Pumpkin Pancake Recipe</a></b>
  391. <p>
  392. Amazing 100% Whole Grain Pumpkin Pancake Recipe
  393. Not too long ago I was eating at...&nbsp;<a href='http://www.purenaturaldiva.com/2012/04/pumpkin-pancake-recipe/'></a></p>
  394. <div style="border-bottom:1px dotted #94B1DF; margin-bottom:10px; padding:0px 0px 10px 0px; clear:both;"></div>
  395. <a href="http://www.purenaturaldiva.com/2012/03/ceasar-salad-recipe/" rel="bookmark"><img style="float:left;margin:0px 10px 0px 0px;" src="http://www.purenaturaldiva.com/wp-content/themes/lifestyle_31/tools/timthumb.php?src=http://www.purenaturaldiva.com/wp-content/uploads/2012/03/photo2.jpg&h=100&w=&zc=1" alt="Ceasar Salad Recipe" /></a>
  396. <b><a href="http://www.purenaturaldiva.com/2012/03/ceasar-salad-recipe/" rel="bookmark">Ceasar Salad Recipe</a></b>
  397. <p>
  398. Try this Fast &amp; Easy Ceasar Salad Recipe for Dinner
  399. What I love about this Ceasar...&nbsp;<a href='http://www.purenaturaldiva.com/2012/03/ceasar-salad-recipe/'></a></p>
  400. <div style="border-bottom:1px dotted #94B1DF; margin-bottom:10px; padding:0px 0px 10px 0px; clear:both;"></div>
  401. <a href="http://www.purenaturaldiva.com/2012/03/homemade-facial-mask-for-dry-skin/" rel="bookmark"><img style="float:left;margin:0px 10px 0px 0px;" src="http://www.purenaturaldiva.com/wp-content/themes/lifestyle_31/tools/timthumb.php?src=http://www.purenaturaldiva.com/wp-content/uploads/2012/02/photo1.jpg&h=100&w=&zc=1" alt="Homemade Facial Mask for Dry Skin" /></a>
  402. <b><a href="http://www.purenaturaldiva.com/2012/03/homemade-facial-mask-for-dry-skin/" rel="bookmark">Homemade Facial Mask for Dry Skin</a></b>
  403. <p>
  404. Simple Homemade Facial Mask For Dry Skin
  405. My skin has been SO dry this winter.&nbsp;...&nbsp;<a href='http://www.purenaturaldiva.com/2012/03/homemade-facial-mask-for-dry-skin/'></a></p>
  406. <div style="border-bottom:1px dotted #94B1DF; margin-bottom:10px; padding:0px 0px 10px 0px; clear:both;"></div>
  407. <a href="http://www.purenaturaldiva.com/2012/01/8-simple-tips-for-hosting-a-healthier-superbowl-party/" rel="bookmark"><img style="float:left;margin:0px 10px 0px 0px;" src="http://www.purenaturaldiva.com/wp-content/themes/lifestyle_31/tools/timthumb.php?src=http://www.purenaturaldiva.com/wp-content/uploads/2011/01/IMG_1454.jpg&h=100&w=&zc=1" alt="8 Simple Tips For Hosting a Healthier Superbowl Party" /></a>
  408. <b><a href="http://www.purenaturaldiva.com/2012/01/8-simple-tips-for-hosting-a-healthier-superbowl-party/" rel="bookmark">8 Simple Tips For Hosting a Healthier Superbowl Party</a></b>
  409. <p>
  410. Superbowl&#8230; quite possibly THE party of the year in many homes across the country. ...&nbsp;<a href='http://www.purenaturaldiva.com/2012/01/8-simple-tips-for-hosting-a-healthier-superbowl-party/'></a></p>
  411. <div style="border-bottom:1px dotted #94B1DF; margin-bottom:10px; padding:0px 0px 10px 0px; clear:both;"></div>
  412. <b><a href="http://www.purenaturaldiva.com/category/food-diet/" rel="bookmark">Read More Posts From This Category</a></b>
  413. </div>
  414. </div>
  415. <div id="homepageright">
  416. <div class="hpfeatured">
  417. <h3>Review &amp; Giveaways</h3>
  418. <!--This is where the thumbnails are found for the homepage bottom section - note the custom field name for this image is "thumbnail". Recommended image size is 70x70, as the stylesheet is written for this size.-->
  419. <a href="http://www.purenaturaldiva.com/2012/05/key-west-images-a-romantic-getaway-to-the-reach-hotel/" rel="bookmark"><img style="float:left;margin:0px 10px 0px 0px;" src="http://www.purenaturaldiva.com/wp-content/themes/lifestyle_31/tools/timthumb.php?src=http://www.purenaturaldiva.com/wp-content/uploads/2012/05/photo5.jpg&h=100&w=&zc=1" alt="Key West Images: A Romantic Getaway to the Reach Hotel" /></a>
  420. <b><a href="http://www.purenaturaldiva.com/2012/05/key-west-images-a-romantic-getaway-to-the-reach-hotel/" rel="bookmark">Key West Images: A Romantic Getaway to the Reach Hotel</a></b>
  421. <p>
  422. &nbsp;
  423. &nbsp;
  424. &nbsp;
  425. Key West Images: A Romantic Getaway to the Reach Hotel
  426. We recently...&nbsp;<a href='http://www.purenaturaldiva.com/2012/05/key-west-images-a-romantic-getaway-to-the-reach-hotel/'></a></p>
  427. <div style="border-bottom:1px dotted #94B1DF; margin-bottom:10px; padding:0px 0px 10px 0px; clear:both;"></div>
  428. <a href="http://www.purenaturaldiva.com/2011/11/doublebounce-review/" rel="bookmark"><img style="float:left;margin:0px 10px 0px 0px;" src="http://www.purenaturaldiva.com/wp-content/themes/lifestyle_31/tools/timthumb.php?src=http://www.purenaturaldiva.com/wp-content/uploads/2011/11/photo1.jpg&h=100&w=&zc=1" alt="JumpSport DoubleBounce Trampoline Review" /></a>
  429. <b><a href="http://www.purenaturaldiva.com/2011/11/doublebounce-review/" rel="bookmark">JumpSport DoubleBounce Trampoline Review</a></b>
  430. <p>
  431. Yes.  I said DoubleBounce!
  432. We stalked trampolines for a couple of years&#8230;...&nbsp;<a href='http://www.purenaturaldiva.com/2011/11/doublebounce-review/'></a></p>
  433. <div style="border-bottom:1px dotted #94B1DF; margin-bottom:10px; padding:0px 0px 10px 0px; clear:both;"></div>
  434. <a href="http://www.purenaturaldiva.com/2011/10/daily-moisturizer-spf/" rel="bookmark"><img style="float:left;margin:0px 10px 0px 0px;" src="http://www.purenaturaldiva.com/wp-content/themes/lifestyle_31/tools/timthumb.php?src=http://www.purenaturaldiva.com/wp-content/uploads/2011/10/4313733705_3db563386a_b.jpg&h=100&w=&zc=1" alt="PND Approved Daily Moisturizer with SPF" /></a>
  435. <b><a href="http://www.purenaturaldiva.com/2011/10/daily-moisturizer-spf/" rel="bookmark">PND Approved Daily Moisturizer with SPF</a></b>
  436. <p>
  437. Daily Moisturizer with SPF an Essential Element of Every Anti Aging Toolbox
  438. &nbsp;
  439. &nbsp;
  440. Every...&nbsp;<a href='http://www.purenaturaldiva.com/2011/10/daily-moisturizer-spf/'></a></p>
  441. <div style="border-bottom:1px dotted #94B1DF; margin-bottom:10px; padding:0px 0px 10px 0px; clear:both;"></div>
  442. <a href="http://www.purenaturaldiva.com/2011/05/zookeeper-movie-trailer-family-friendly-fun/" rel="bookmark"><img style="float:left;margin:0px 10px 0px 0px;" src="http://www.purenaturaldiva.com/wp-content/themes/lifestyle_31/tools/timthumb.php?src=http://www.purenaturaldiva.com/wp-content/uploads/2010/02/Optimized.41_2_3.jpg&h=100&w=&zc=1" alt="Zookeeper: Fun Movie for the Whole Family" /></a>
  443. <b><a href="http://www.purenaturaldiva.com/2011/05/zookeeper-movie-trailer-family-friendly-fun/" rel="bookmark">Zookeeper: Fun Movie for the Whole Family</a></b>
  444. <p>
  445. &nbsp;
  446. &nbsp;
  447. &nbsp;
  448. &nbsp;
  449. &nbsp;
  450. Plan For a Little Zookeeper Fun
  451. I am excited...&nbsp;<a href='http://www.purenaturaldiva.com/2011/05/zookeeper-movie-trailer-family-friendly-fun/'></a></p>
  452. <div style="border-bottom:1px dotted #94B1DF; margin-bottom:10px; padding:0px 0px 10px 0px; clear:both;"></div>
  453. <b><a href="http://www.purenaturaldiva.com/category/review-giveaways/" rel="bookmark">Read More Posts From This Category</a></b>
  454. </div>
  455. </div>
  456. <div id="homepagebottom">
  457. <div class="hpbottom">
  458. <h3>Pure Natural Living</h3>
  459. <b><a href="http://www.purenaturaldiva.com/2012/05/vlogmom-character-flaws-weakness/" rel="bookmark">#Vlogmom: Character Flaws &#038; Weakness&#8217;</a></b>
  460. <p>
  461. &nbsp;
  462. &nbsp;
  463. &nbsp;
  464. This week for vlogmom we are sharing our biggest character flaw or something we struggle with.
  465. Next week we are going to be digging into our junk drawer sharing 3 things and tell their stories &#8211; thank you Megan Crume!
  466. &nbsp;<a href='http://www.purenaturaldiva.com/2012/05/vlogmom-character-flaws-weakness/'>Read More &rarr;</a></p>
  467. <div style="border-bottom:1px dotted #94B1DF; margin-bottom:10px; padding:0px 0px 10px 0px; clear:both;"></div>
  468. <a href="http://www.purenaturaldiva.com/2012/05/mineral-make-up-ingredients-to-avoid/" rel="bookmark"><img style="float:left;margin:0px 10px 0px 0px;" src="http://www.purenaturaldiva.com/wp-content/themes/lifestyle_31/tools/timthumb.php?src=http://www.purenaturaldiva.com/wp-content/uploads/2012/05/photo2.jpg&h=150&w=&zc=1" alt="Mineral Make Up Ingredients To Avoid" /></a>
  469. <b><a href="http://www.purenaturaldiva.com/2012/05/mineral-make-up-ingredients-to-avoid/" rel="bookmark">Mineral Make Up Ingredients To Avoid</a></b>
  470. <p>
  471. Mineral Make Up Ingredients To Avoid
  472. Mineral Make Up is a great option for those looking for natural beauty solutions.&nbsp; Mineral Make Up is even billed as good for your skin &#8211; so much so that you can sleep in it&#8230; I&#8217;m not sure I would go that far, but I do believe they offer a better beauty option to those looking for the purest...&nbsp;<a href='http://www.purenaturaldiva.com/2012/05/mineral-make-up-ingredients-to-avoid/'>[Read more of this review]</a></p>
  473. <div style="border-bottom:1px dotted #94B1DF; margin-bottom:10px; padding:0px 0px 10px 0px; clear:both;"></div>
  474. <a href="http://www.purenaturaldiva.com/2012/05/attachement-parenting-takes-the-cover-of-time-magazine-america-is-talking-about-jamie-lynn/" rel="bookmark"><img style="float:left;margin:0px 10px 0px 0px;" src="http://www.purenaturaldiva.com/wp-content/themes/lifestyle_31/tools/timthumb.php?src=http://www.purenaturaldiva.com/wp-content/uploads/2012/05/photo1.jpg&h=150&w=&zc=1" alt="Attachement Parenting Takes the cover of Time Magazine &#038; America IS Talking about Jamie Lynne" /></a>
  475. <b><a href="http://www.purenaturaldiva.com/2012/05/attachement-parenting-takes-the-cover-of-time-magazine-america-is-talking-about-jamie-lynn/" rel="bookmark">Attachement Parenting Takes the cover of Time Magazine &#038; America IS Talking about Jamie Lynne</a></b>
  476. <p>
  477. Attachement Parenting Takes the cover of Time Magazine &amp; America IS Talking about Jamie Lynne
  478. A few short days ago, Los Angeles Blogger Jamie Lynne Grumet was invited to be photographed for Time Magazine nursing her soon to be 4 year old son, Time ended up used Jamie&#8217;s photo for the cover.  The picture and the story had been picked up almost...&nbsp;<a href='http://www.purenaturaldiva.com/2012/05/attachement-parenting-takes-the-cover-of-time-magazine-america-is-talking-about-jamie-lynn/'>[Read more of this review]</a></p>
  479. <div style="border-bottom:1px dotted #94B1DF; margin-bottom:10px; padding:0px 0px 10px 0px; clear:both;"></div>
  480. <b><a href="http://www.purenaturaldiva.com/2012/05/vlogmom-which-tv-show-would-you-want-to-appear-as-a-guest/" rel="bookmark">#VlogMom: Which TV Show Would You Want to Appear as a Guest?</a></b>
  481. <p>
  482. &nbsp;
  483. &nbsp;
  484. This weeks #vlogmom question comes from Jenn Bullock of Mommy B Knows Best &#8211; Share the Television Show Would You Want to be a Guest. I had to think about this one..
  485. Next week our Vlogmom topic will be: What is Your Biggest &#8220;Character Flaw&#8221; or something you struggle with?
  486. &nbsp;<a href='http://www.purenaturaldiva.com/2012/05/vlogmom-which-tv-show-would-you-want-to-appear-as-a-guest/'>Read More &rarr;</a></p>
  487. <div style="border-bottom:1px dotted #94B1DF; margin-bottom:10px; padding:0px 0px 10px 0px; clear:both;"></div>
  488. <b><a href="http://www.purenaturaldiva.com/2012/05/what-we-can-learn-from-the-kashi-cereal-scandal/" rel="bookmark">What We Can Learn From the Kashi Cereal Scandal</a></b>
  489. <p>
  490. A Rhode Island Grocer pulled Kashi Cereal from the shelves after finding the cereal contained genetically modified soy and traces of pesticide residue, feeling misled by this natural brand consumers have flooded the Kashi Facebook page in outrage.
  491. My thoughts and what we as consumers can take away from the kashi cereal scandal.
  492. &nbsp;<a href='http://www.purenaturaldiva.com/2012/05/what-we-can-learn-from-the-kashi-cereal-scandal/'>Read More &rarr;</a></p>
  493. <div style="border-bottom:1px dotted #94B1DF; margin-bottom:10px; padding:0px 0px 10px 0px; clear:both;"></div>
  494. <b><a href="http://www.purenaturaldiva.com/2012/05/vlogmom-what-keeps-you-sane/" rel="bookmark">#VlogMom: What Keeps You Sane?</a></b>
  495. <p>
  496. What Keeps You Sane?
  497. This weeks #VlogMom topic is what keeps you sane brought to you by my good friend Desiree Miller from Stress Free Baby?
  498. &nbsp;
  499. &nbsp;<a href='http://www.purenaturaldiva.com/2012/05/vlogmom-what-keeps-you-sane/'>Read More &rarr;</a></p>
  500. <div style="border-bottom:1px dotted #94B1DF; margin-bottom:10px; padding:0px 0px 10px 0px; clear:both;"></div>
  501. <a href="http://www.purenaturaldiva.com/2012/05/wordless-wedsnesday-dogs-in-motion/" rel="bookmark"><img style="float:left;margin:0px 10px 0px 0px;" src="http://www.purenaturaldiva.com/wp-content/themes/lifestyle_31/tools/timthumb.php?src=http://www.purenaturaldiva.com/wp-content/uploads/2012/05/photo.jpg&h=150&w=&zc=1" alt="Wordless Wedsnesday: Dogs in Motion" /></a>
  502. <b><a href="http://www.purenaturaldiva.com/2012/05/wordless-wedsnesday-dogs-in-motion/" rel="bookmark">Wordless Wedsnesday: Dogs in Motion</a></b>
  503. <p>&nbsp;
  504. My husband captured this incredible moment between our new foster Disney (the blue Pitt Bull) and Diva!
  505. Disney is a Blue Pitt Bull who was rescued out of Baldwin Park in Los Angeles.  He arrived in horrible condition, he almost didn&#8217;t survive -  his sister who came in with him didn&#8217;t make it.
  506. We are busy teaching Disney his manners,...&nbsp;<a href='http://www.purenaturaldiva.com/2012/05/wordless-wedsnesday-dogs-in-motion/'>[Read more of this review]</a></p>
  507. <div style="border-bottom:1px dotted #94B1DF; margin-bottom:10px; padding:0px 0px 10px 0px; clear:both;"></div>
  508. <b><a href="http://www.purenaturaldiva.com/2012/05/what-is-mineral-make-up/" rel="bookmark">What is Mineral Make Up?</a></b>
  509. <p>
  510. What is Mineral Make Up?&nbsp;
  511. PND is working on a series that will share our favorite Mineral Make Up products with you, but first we wanted to answer a question we get asked a lot &#8211; What is Mineral Make Up?
  512. &nbsp;
  513. What is you favorite Mineral Make Up?
  514. &nbsp;<a href='http://www.purenaturaldiva.com/2012/05/what-is-mineral-make-up/'>Read More &rarr;</a></p>
  515. <div style="border-bottom:1px dotted #94B1DF; margin-bottom:10px; padding:0px 0px 10px 0px; clear:both;"></div>
  516. <a href="http://www.purenaturaldiva.com/2012/04/bubble-rollers-vlogmom/" rel="bookmark"><img style="float:left;margin:0px 10px 0px 0px;" src="http://www.purenaturaldiva.com/wp-content/themes/lifestyle_31/tools/timthumb.php?src=http://www.purenaturaldiva.com/wp-content/uploads/2012/04/photo6.jpg&h=150&w=&zc=1" alt="Bubble Rollers: Good for a Giggle" /></a>
  517. <b><a href="http://www.purenaturaldiva.com/2012/04/bubble-rollers-vlogmom/" rel="bookmark">Bubble Rollers: Good for a Giggle</a></b>
  518. <p>#VLOGMOM:&nbsp; Share One Thing You&#8217;ve Done Recently that Scared You
  519. This week for #vlogmom we were asked to share one thing that we have done recently that scared us&#8230;It just happened that I have footage of a recent bubble roller experience.&nbsp; Only a handful of adults gave it a spin&#8230; and of course the children left each of us in...&nbsp;<a href='http://www.purenaturaldiva.com/2012/04/bubble-rollers-vlogmom/'>[Read more of this review]</a></p>
  520. <div style="border-bottom:1px dotted #94B1DF; margin-bottom:10px; padding:0px 0px 10px 0px; clear:both;"></div>
  521. <a href="http://www.purenaturaldiva.com/2012/04/new-spring-fashion/" rel="bookmark"><img style="float:left;margin:0px 10px 0px 0px;" src="http://www.purenaturaldiva.com/wp-content/themes/lifestyle_31/tools/timthumb.php?src=http://www.purenaturaldiva.com/wp-content/uploads/2012/04/photo3.jpg&h=150&w=&zc=1" alt="New Spring Fashion: Dinner with the Girls" /></a>
  522. <b><a href="http://www.purenaturaldiva.com/2012/04/new-spring-fashion/" rel="bookmark">New Spring Fashion: Dinner with the Girls</a></b>
  523. <p>
  524. New Spring Fashion Trend &#8211; Stripes
  525. I was hanging around in Polyvore  &amp; created this spring outfit that would be perfect for dinner with the girls.  The set was actually inspired by an outfit I just wore out for diner with the girls!
  526. New Spring Fashion: Perfectly Striped
  527. Perfect For Dinner Out with the Girls
  528. Striped By DayStriped Denim...&nbsp;<a href='http://www.purenaturaldiva.com/2012/04/new-spring-fashion/'>[Read more of this review]</a></p>
  529. <div style="border-bottom:1px dotted #94B1DF; margin-bottom:10px; padding:0px 0px 10px 0px; clear:both;"></div>
  530. <b><a href="http://www.purenaturaldiva.com/category/organic-pure-natural-living/" rel="bookmark">Read More Posts From This Category</a></b>
  531. </div>
  532. </div>
  533. </div>
  534. <!-- begin sidebar -->
  535. <div id="sidebar">
  536. <ul id="sidebarwidgeted">
  537. <li id="text-461539656" class="widget widget_text"><h2 class="widgettitle">Diva Love</h2>
  538. <div class="textwidget"><center><a href="http://www.purenaturaldiva.com/about-2/subscribe-to-pure-natural-diva/"><img src="http://www.purenaturaldiva.com/wp-content/uploads/2011/01/pndemail2.png" /></a>
  539. <a href="http://facebook.com/purenaturaldiva"><img src="http://www.purenaturaldiva.com/wp-content/uploads/2009/08/facebook.png"</a>
  540. <a href="http://pinterest.com/purenaturaldiva/"><img src="http://www.purenaturaldiva.com/wp-content/uploads/2012/02/pinterest_red.png"</a>
  541. <a href="http://twitter.com/purenaturaldiva"><img src="http://www.purenaturaldiva.com/wp-content/uploads/2009/08/twitter.png"</a>
  542. <a href="http://www.linkedin.com/in/purenaturaldiva"><img src="http://www.purenaturaldiva.com/wp-content/uploads/2009/08/linkedin.png"</a></center></div>
  543. </li>
  544. <li id="text-461539674" class="widget widget_text"><h2 class="widgettitle">Categories</h2>
  545. <div class="textwidget"><a href="http://www.purenaturaldiva.com/category/parenting/"><img src="http://www.nwdesignsit.com/designimages/pndfamily.png" /></a><span style="font-size:75%;">Sponsor:</span>
  546. <a href="http://www.ewg.org/kid-safe-chemicals-act-blog/kid-safe-chemicals-act/?utm_source=Blog&utm_medium=Badge&utm_campaign=Kid-Safe-Pure-Natural-Diva">Safe Chemicals Act</a>
  547. <a href="http://www.purenaturaldiva.com/category/beauty-fashion/better-beauty/"><img src="http://www.nwdesignsit.com/designimages/pndbeauty.png" /></a><span style="font-size:75%;">Sponsor:</span>
  548. <a href="http://www.facefactsbylori.com/">Face Facts</a>
  549. <a href="http://www.purenaturaldiva.com/category/beauty-fashion/better-beauty/"><img src="http://www.nwdesignsit.com/designimages/pndfitness.png" /></a><span style="font-size:75%;">Sponsor:</span>
  550. <a href="http://www.purenaturaldiva.com/media-services/diva-social-media-consulting-services/">PND Media Services</a>
  551. <a href="http://www.purenaturaldiva.com/category/food-diet/"><img src="http://www.nwdesignsit.com/designimages/pndfood.png" /></a><span style="font-size:75%;">Sponsor:</span>
  552. <a href="http://www.pelleve.com/">Pelleve</a>
  553. <a href="http://www.purenaturaldiva.com/category/beauty-fashion/eco-fashion-organic/"><img src="http://www.nwdesignsit.com/designimages/pndfashion.png" /></a><span style="font-size:75%;">Sponsor:</span>
  554. <a href="http://us.hessnatur.com/shop/showCmsContent.action?contentID=home">Hessnatur</a>
  555. <a href="http://www.purenaturaldiva.com/category/health-wellness/"><img src="http://www.nwdesignsit.com/designimages/pndhealth.png" /></a><span style="font-size:75%;">Sponsorship </span>
  556. <a href="http://www.purenaturaldiva.com/media-services/diva-facts-figures-proof/">Available</a>
  557. <a href="http://www.purenaturaldiva.com/category/house-garden/"><img src="http://www.nwdesignsit.com/designimages/pndhome.png" /></a><span style="font-size:75%;">Sponsor </span>
  558. <a href="http://www.kiva.org/">Kiva</a>
  559. <a href="http://www.purenaturaldiva.com/"><img src="http://www.nwdesignsit.com/designimages/pndinthenews.png" /></a><span style="font-size:75%;">Sponsor </span>
  560. <a href="http://www.cosmeticsdatabase.com/index.php">Cosmetics Database</a>
  561. <a href="http://www.purenaturaldiva.com/"><img src="http://www.nwdesignsit.com/designimages/pndtechnology.png" /></a><span style="font-size:75%;">Sponsorship </span>
  562. <a href="http://www.purenaturaldiva.com/media-services/diva-facts-figures-proof/">Available</a>
  563. <a href="http://www.purenaturaldiva.com/category/travel/"><img src="http://www.nwdesignsit.com/designimages/pndtravel.png" /></a><span style="font-size:75%;">Sponsor </span>
  564. <a href="http://www.fessparker.com/html/inn2.html">Fess Parker Winery</a></div>
  565. </li>
  566. <li id="text-461539678" class="widget widget_text"> <div class="textwidget"><div><object width="298" height="198"><param name="movie" value="http://d.yimg.com/nl/shine/shine/player.swf"></param><param name="flashVars" value="vid=21390524&"></param><param name="allowfullscreen" value="true"></param><param name="wmode" value="transparent"></param><embed width="576" height="324" allowFullScreen="true" src="http://d.yimg.com/nl/shine/shine/player.swf" type="application/x-shockwave-flash" flashvars="vid=21390524&"></embed></object></div></div>
  567. </li>
  568. <li id="text-461539665" class="widget widget_text"> <div class="textwidget"><script type="text/javascript"><!--
  569. amazon_ad_tag = "wwwpurenatura-20"; amazon_ad_width = "300"; amazon_ad_height = "250"; amazon_ad_link_target = "new"; amazon_ad_border = "hide"; amazon_color_link = "388D14";//--></script>
  570. <script type="text/javascript" src="http://www.assoc-amazon.com/s/ads.js"></script></div>
  571. </li>
  572. <li id="text-461539676" class="widget widget_text"> <div class="textwidget"><iframe title="YouTube video player" width="298" height="198" src="http://www.youtube.com/embed/O4DKyemG8aA" frameborder="0" allowfullscreen></iframe></div>
  573. </li>
  574. </ul>
  575. <!-- begin l_sidebar -->
  576. <div id="l_sidebar">
  577. <ul id="l_sidebarwidgeted">
  578. <li id="text-461539669" class="widget widget_text"> <div class="textwidget"><div align="center"><a href="http://www.ewg.org/kid-safe-chemicals-act-blog/kid-safe-chemicals-act/?utm_source=Blog&utm_medium=Badge&utm_campaign=Kid-Safe-Pure-Natural-Diva"><img alt="Kid-safe Chemicals Campaign" src="http://www.ewg.org/files/KSCAbadge.jpg" width="120" height="130" border="0" /></a></div>
  579. </li>
  580. <li id="tag_cloud-4" class="widget widget_tag_cloud"><h2 class="widgettitle">Tags</h2>
  581. <div class="tagcloud"><a href='http://www.purenaturaldiva.com/tag/baby/' class='tag-link-389' title='6 topics' style='font-size: 10.3333333333pt;'>baby</a>
  582. <a href='http://www.purenaturaldiva.com/tag/beauty/' class='tag-link-513' title='11 topics' style='font-size: 13.9111111111pt;'>beauty</a>
  583. <a href='http://www.purenaturaldiva.com/tag/bpa/' class='tag-link-179' title='6 topics' style='font-size: 10.3333333333pt;'>BPA</a>
  584. <a href='http://www.purenaturaldiva.com/tag/cancer/' class='tag-link-401' title='4 topics' style='font-size: 8pt;'>cancer</a>
  585. <a href='http://www.purenaturaldiva.com/tag/children/' class='tag-link-471' title='9 topics' style='font-size: 12.6666666667pt;'>children</a>
  586. <a href='http://www.purenaturaldiva.com/tag/cleaner/' class='tag-link-412' title='4 topics' style='font-size: 8pt;'>cleaner</a>
  587. <a href='http://www.purenaturaldiva.com/tag/dangers/' class='tag-link-457' title='4 topics' style='font-size: 8pt;'>Dangers</a>
  588. <a href='http://www.purenaturaldiva.com/tag/easy/' class='tag-link-523' title='9 topics' style='font-size: 12.6666666667pt;'>easy</a>
  589. <a href='http://www.purenaturaldiva.com/tag/eco/' class='tag-link-518' title='28 topics' style='font-size: 19.8222222222pt;'>eco</a>
  590. <a href='http://www.purenaturaldiva.com/tag/eco-friendly/' class='tag-link-375' title='4 topics' style='font-size: 8pt;'>Eco Friendly</a>
  591. <a href='http://www.purenaturaldiva.com/tag/family/' class='tag-link-838' title='6 topics' style='font-size: 10.3333333333pt;'>family</a>
  592. <a href='http://www.purenaturaldiva.com/tag/flax/' class='tag-link-558' title='8 topics' style='font-size: 11.8888888889pt;'>flax</a>
  593. <a href='http://www.purenaturaldiva.com/tag/food/' class='tag-link-244' title='11 topics' style='font-size: 13.9111111111pt;'>food</a>
  594. <a href='http://www.purenaturaldiva.com/tag/free/' class='tag-link-550' title='6 topics' style='font-size: 10.3333333333pt;'>free</a>
  595. <a href='http://www.purenaturaldiva.com/tag/friendly/' class='tag-link-581' title='11 topics' style='font-size: 13.9111111111pt;'>friendly</a>
  596. <a href='http://www.purenaturaldiva.com/tag/giveaway/' class='tag-link-289' title='12 topics' style='font-size: 14.3777777778pt;'>Giveaway</a>
  597. <a href='http://www.purenaturaldiva.com/tag/grain/' class='tag-link-612' title='6 topics' style='font-size: 10.3333333333pt;'>Grain</a>
  598. <a href='http://www.purenaturaldiva.com/tag/green/' class='tag-link-373' title='39 topics' style='font-size: 22pt;'>Green</a>
  599. <a href='http://www.purenaturaldiva.com/tag/healthier/' class='tag-link-555' title='5 topics' style='font-size: 9.24444444444pt;'>healthier</a>
  600. <a href='http://www.purenaturaldiva.com/tag/healthy/' class='tag-link-599' title='11 topics' style='font-size: 13.9111111111pt;'>healthy</a>
  601. <a href='http://www.purenaturaldiva.com/tag/hypnobirthing/' class='tag-link-232' title='5 topics' style='font-size: 9.24444444444pt;'>Hypnobirthing</a>
  602. <a href='http://www.purenaturaldiva.com/tag/make/' class='tag-link-521' title='10 topics' style='font-size: 13.2888888889pt;'>make</a>
  603. <a href='http://www.purenaturaldiva.com/tag/make-up/' class='tag-link-349' title='4 topics' style='font-size: 8pt;'>make up</a>
  604. <a href='http://www.purenaturaldiva.com/tag/money/' class='tag-link-386' title='5 topics' style='font-size: 9.24444444444pt;'>money</a>
  605. <a href='http://www.purenaturaldiva.com/tag/natural/' class='tag-link-295' title='32 topics' style='font-size: 20.7555555556pt;'>Natural</a>
  606. <a href='http://www.purenaturaldiva.com/tag/new/' class='tag-link-726' title='5 topics' style='font-size: 9.24444444444pt;'>new</a>
  607. <a href='http://www.purenaturaldiva.com/tag/non/' class='tag-link-618' title='9 topics' style='font-size: 12.6666666667pt;'>non</a>
  608. <a href='http://www.purenaturaldiva.com/tag/non-toxic/' class='tag-link-410' title='6 topics' style='font-size: 10.3333333333pt;'>non-toxic</a>
  609. <a href='http://www.purenaturaldiva.com/tag/organic/' class='tag-link-132' title='36 topics' style='font-size: 21.5333333333pt;'>Organic</a>
  610. <a href='http://www.purenaturaldiva.com/tag/own/' class='tag-link-616' title='7 topics' style='font-size: 11.1111111111pt;'>own</a>
  611. <a href='http://www.purenaturaldiva.com/tag/plastic/' class='tag-link-247' title='5 topics' style='font-size: 9.24444444444pt;'>plastic</a>
  612. <a href='http://www.purenaturaldiva.com/tag/pure/' class='tag-link-628' title='5 topics' style='font-size: 9.24444444444pt;'>pure</a>
  613. <a href='http://www.purenaturaldiva.com/tag/organic-pure-natural-living/' class='tag-link-663' title='6 topics' style='font-size: 10.3333333333pt;'>Pure Natural Living</a>
  614. <a href='http://www.purenaturaldiva.com/tag/recipe/' class='tag-link-230' title='22 topics' style='font-size: 18.2666666667pt;'>Recipe</a>
  615. <a href='http://www.purenaturaldiva.com/tag/review/' class='tag-link-164' title='34 topics' style='font-size: 21.0666666667pt;'>review</a>
  616. <a href='http://www.purenaturaldiva.com/tag/safe/' class='tag-link-392' title='14 topics' style='font-size: 15.4666666667pt;'>safe</a>
  617. <a href='http://www.purenaturaldiva.com/tag/safety/' class='tag-link-245' title='7 topics' style='font-size: 11.1111111111pt;'>safety</a>
  618. <a href='http://www.purenaturaldiva.com/tag/save/' class='tag-link-385' title='6 topics' style='font-size: 10.3333333333pt;'>save</a>
  619. <a href='http://www.purenaturaldiva.com/tag/tips/' class='tag-link-460' title='8 topics' style='font-size: 11.8888888889pt;'>Tips</a>
  620. <a href='http://www.purenaturaldiva.com/tag/top/' class='tag-link-608' title='5 topics' style='font-size: 9.24444444444pt;'>top</a>
  621. <a href='http://www.purenaturaldiva.com/tag/toxic/' class='tag-link-478' title='12 topics' style='font-size: 14.3777777778pt;'>toxic</a>
  622. <a href='http://www.purenaturaldiva.com/tag/vegetables/' class='tag-link-524' title='8 topics' style='font-size: 11.8888888889pt;'>vegetables</a>
  623. <a href='http://www.purenaturaldiva.com/tag/water/' class='tag-link-387' title='6 topics' style='font-size: 10.3333333333pt;'>water</a>
  624. <a href='http://www.purenaturaldiva.com/tag/whole/' class='tag-link-611' title='7 topics' style='font-size: 11.1111111111pt;'>Whole</a>
  625. <a href='http://www.purenaturaldiva.com/tag/your/' class='tag-link-615' title='6 topics' style='font-size: 10.3333333333pt;'>your</a></div>
  626. </li>
  627. <li id="text-461539672" class="widget widget_text"> <div class="textwidget"><div align="center"><a href="http://www.mamavation.com/2010/10/top-50-most-inspirational-healthy-tweeps.html" title="Mamavation"><img src="http://i688.photobucket.com/albums/vv248/bookieboo78/top30.png" alt="Mamavation" style="border:none;" /></a></div></div>
  628. </li>
  629. <li id="text-461539668" class="widget widget_text"> <div class="textwidget"><a href="http://www.onlinenursingprograms.net/top_organic/"><img src="http://www.onlinenursingprograms.net/top_organic/images/Badges/circlebadge1.png" alt="Top Organic Blog" border="0" /></a><br><font size="1">
  630. </div>
  631. </li>
  632. <li id="archives-2" class="widget widget_archive"><h2 class="widgettitle">Archives</h2>
  633. <select name="archive-dropdown" onchange='document.location.href=this.options[this.selectedIndex].value;'> <option value="">Select Month</option> <option value='http://www.purenaturaldiva.com/2012/05/'> May 2012 </option>
  634. <option value='http://www.purenaturaldiva.com/2012/04/'> April 2012 </option>
  635. <option value='http://www.purenaturaldiva.com/2012/03/'> March 2012 </option>
  636. <option value='http://www.purenaturaldiva.com/2012/02/'> February 2012 </option>
  637. <option value='http://www.purenaturaldiva.com/2012/01/'> January 2012 </option>
  638. <option value='http://www.purenaturaldiva.com/2011/12/'> December 2011 </option>
  639. <option value='http://www.purenaturaldiva.com/2011/11/'> November 2011 </option>
  640. <option value='http://www.purenaturaldiva.com/2011/10/'> October 2011 </option>
  641. <option value='http://www.purenaturaldiva.com/2011/09/'> September 2011 </option>
  642. <option value='http://www.purenaturaldiva.com/2011/08/'> August 2011 </option>
  643. <option value='http://www.purenaturaldiva.com/2011/07/'> July 2011 </option>
  644. <option value='http://www.purenaturaldiva.com/2011/06/'> June 2011 </option>
  645. <option value='http://www.purenaturaldiva.com/2011/05/'> May 2011 </option>
  646. <option value='http://www.purenaturaldiva.com/2011/04/'> April 2011 </option>
  647. <option value='http://www.purenaturaldiva.com/2011/03/'> March 2011 </option>
  648. <option value='http://www.purenaturaldiva.com/2011/02/'> February 2011 </option>
  649. <option value='http://www.purenaturaldiva.com/2011/01/'> January 2011 </option>
  650. <option value='http://www.purenaturaldiva.com/2010/12/'> December 2010 </option>
  651. <option value='http://www.purenaturaldiva.com/2010/11/'> November 2010 </option>
  652. <option value='http://www.purenaturaldiva.com/2010/10/'> October 2010 </option>
  653. <option value='http://www.purenaturaldiva.com/2010/09/'> September 2010 </option>
  654. <option value='http://www.purenaturaldiva.com/2010/08/'> August 2010 </option>
  655. <option value='http://www.purenaturaldiva.com/2010/07/'> July 2010 </option>
  656. <option value='http://www.purenaturaldiva.com/2010/06/'> June 2010 </option>
  657. <option value='http://www.purenaturaldiva.com/2010/05/'> May 2010 </option>
  658. <option value='http://www.purenaturaldiva.com/2010/04/'> April 2010 </option>
  659. <option value='http://www.purenaturaldiva.com/2010/03/'> March 2010 </option>
  660. <option value='http://www.purenaturaldiva.com/2010/02/'> February 2010 </option>
  661. <option value='http://www.purenaturaldiva.com/2010/01/'> January 2010 </option>
  662. <option value='http://www.purenaturaldiva.com/2009/12/'> December 2009 </option>
  663. <option value='http://www.purenaturaldiva.com/2009/11/'> November 2009 </option>
  664. <option value='http://www.purenaturaldiva.com/2009/10/'> October 2009 </option>
  665. <option value='http://www.purenaturaldiva.com/2009/09/'> September 2009 </option>
  666. <option value='http://www.purenaturaldiva.com/2009/08/'> August 2009 </option>
  667. <option value='http://www.purenaturaldiva.com/2009/07/'> July 2009 </option>
  668. <option value='http://www.purenaturaldiva.com/2009/06/'> June 2009 </option>
  669. <option value='http://www.purenaturaldiva.com/2009/05/'> May 2009 </option>
  670. <option value='http://www.purenaturaldiva.com/2009/04/'> April 2009 </option>
  671. </select>
  672. </li>
  673. <li id="text-461539652" class="widget widget_text"> <div class="textwidget"><a href='http://www.myfreecopyright.com/registered_mcn/B880C_55662_A0074' title='MyFreeCopyright.com Registered & Protected' ><img src='http://storage.myfreecopyright.com/mfc_protected.png' alt='MyFreeCopyright.com Registered & Protected' title='MyFreeCopyright.com Registered & Protected' width='145px' height='38px' border='0'/></a>
  674. </div>
  675. </li>
  676. <li id="text-461539675" class="widget widget_text"> <div class="textwidget"></div>
  677. </li>
  678. <li id="twitter-3" class="widget widget_twitter"><h2 class="widgettitle"><a href='http://twitter.com/purenaturaldiva'>TWEETING LIVE</a></h2>
  679. <ul class="tweets">
  680. <li>I was about to wish everyone a happy Monday - then I realized it was Tuesday! <a href="http://twitter.com/purenaturaldiva/statuses/207493360309645312" class="timesince">2&nbsp;hours&nbsp;ago</a></li>
  681. <li>These are the pictures my son asks me to take! <a href="http://t.co/bT2bEdlT" rel="nofollow">http://t.co/bT2bEdlT</a> <a href="http://twitter.com/purenaturaldiva/statuses/207489138474233858" class="timesince">2&nbsp;hours&nbsp;ago</a></li>
  682. <li>My first attempt at making eggs! <a href="http://t.co/hXUcmeTk" rel="nofollow">http://t.co/hXUcmeTk</a> <a href="http://twitter.com/purenaturaldiva/statuses/207209432587841537" class="timesince">21&nbsp;hours&nbsp;ago</a></li>
  683. <li>Posts from Pure Natural Diva for 05/28/2012 - <a href="http://t.co/uWT4RcZB" rel="nofollow">http://t.co/uWT4RcZB</a> <a href="http://twitter.com/purenaturaldiva/statuses/207079191936643072" class="timesince">1&nbsp;day&nbsp;ago</a></li>
  684. </ul>
  685. </li>
  686. </ul>
  687. </div>
  688. <!-- end l_sidebar -->
  689. <!-- begin r_sidebar -->
  690. <div id="r_sidebar">
  691. <ul id="r_sidebarwidgeted">
  692. <li id="text-461539660" class="widget widget_text"> <div class="textwidget"><a href="http://www.uptake.com/" title="UpTake thinks I'm a Gem"><img src="http://uptake-assets.s3.amazonaws.com/images/badges/travelgems/tgem_125_b_3.gif" alt="UpTake thinks I'm a Gem"></a>
  693. </div>
  694. </li>
  695. <li id="text-461539679" class="widget widget_text"> <div class="textwidget"><div align="center"><script type="text/javascript" src="http://www.hostmonster.com/src/js/purenaturaldiva/CODE70/120x120/hm_120x120_01.gif"></script></div>
  696. </li>
  697. <li id="text-461539654" class="widget widget_text"> <div class="textwidget"><div id='networkedblogs_nwidget_container' style='height:360px;padding-top:10px;'><div id='networkedblogs_nwidget_above'></div><div id='networkedblogs_nwidget_widget' style="border:1px solid #D1D7DF;background-color:#F5F6F9;margin:0px auto;"><div id="networkedblogs_nwidget_logo" style="padding:1px;margin:0px;background-color:#edeff4;text-align:center;height:21px;"><a href="http://networkedblogs.com/" target="_blank" title="NetworkedBlogs"><img style="border: none;" src="http://static.networkedblogs.com/static/images/logo_small.png" title="NetworkedBlogs"/></a></div><div id="networkedblogs_nwidget_body" style="text-align: center;"></div><div id="networkedblogs_nwidget_follow" style="padding:5px;"><a style="display:block;line-height:100%;width:90px;margin:0px auto;padding:4px 8px;text-align:center;background-color:#3b5998;border:1px solid #D9DFEA;border-bottom-color:#0e1f5b;border-right-color:#0e1f5b;color:#FFFFFF;font-family:'lucida grande',tahoma,verdana,arial,sans-serif;font-size:11px;text-decoration:none;" href="http://networkedblogs.com/blog/pure_natural_diva/?ahash=7e70731f2b21c146b93c598a4ee9500c">Follow this blog</a></div></div><div id='networkedblogs_nwidget_below'></div></div><script type="text/javascript"><!--
  698. if(typeof(networkedblogs)=="undefined"){networkedblogs = {};networkedblogs.blogId=203225;networkedblogs.shortName="pure_natural_diva";}
  699. --></script><script src="http://nwidget.networkedblogs.com/getnetworkwidget?bid=203225" type="text/javascript"></script>
  700. <style="text-align: center;"><a href="http://www.prchecker.info/" title="PageRank Checking Icon" target="_blank">
  701. <img src="http://pr.prchecker.info/getpr.php?codex=aHR0cDovL3d3dy5wdXJlbmF0dXJhbGRpdmEuY29t&tag=2" alt="PageRank Checking Icon" style="border:0;" /></a>
  702. <!-- BEGIN Attracta | Site 591876 | Badge 2 -->
  703. <script type="text/javascript" src="http://cdn.attracta.com/badge/js/591876/core.js"></script><a href="http://cdn.attracta.com/badge/verify/591876.html"><img alt="Increase your website traffic with Attracta.com" style="border:0px" src="http://cdn.attracta.com/badge/img/591876/2.png"></a>
  704. <!-- END Attracta --></div>
  705. </li>
  706. <li id="meta-2" class="widget widget_meta"><h2 class="widgettitle">Inside Access</h2>
  707. <ul>
  708. <li><a href="http://www.purenaturaldiva.com/wp-login.php">Log in</a></li>
  709. <li><a href="http://www.purenaturaldiva.com/feed/" title="Syndicate this site using RSS 2.0">Entries <abbr title="Really Simple Syndication">RSS</abbr></a></li>
  710. <li><a href="http://www.purenaturaldiva.com/comments/feed/" title="The latest comments to all posts in RSS">Comments <abbr title="Really Simple Syndication">RSS</abbr></a></li>
  711. <li><a href="http://wordpress.org/" title="Powered by WordPress, state-of-the-art semantic personal publishing platform.">WordPress.org</a></li>
  712. </ul>
  713. </li>
  714. </ul>
  715. </div>
  716. <!-- end r_sidebar -->
  717. </div>
  718. <!-- end sidebar -->
  719. </div>
  720. <!-- The main column ends -->
  721. <!-- begin footer -->
  722. <div style="clear:both;"></div>
  723. <div id="footer">
  724. <p>Copyright &copy; 2012 &middot; All Rights Reserved &middot; <a href="http://www.studiopress.com/themes/lifestyle" >Lifestyle theme</a> by <a href="http://www.studiopress.com" >StudioPress</a> &middot; Powered by <a href="http://www.wordpress.org/">WordPress</a> &middot; <a href="http://www.purenaturaldiva.com/wp-login.php">Log in</a></p>
  725. </div>
  726. <!-- Start of StatCounter Code -->
  727. <script type="text/javascript">
  728. <!--
  729. var sc_project=7403264;
  730. var sc_security="ac8a3781";
  731. var sc_invisible=1;
  732. //-->
  733. </script>
  734. <script type="text/javascript" src="http://www.statcounter.com/counter/counter_xhtml.js"></script>
  735. <noscript><div class="statcounter"><a title="web analytics" href="http://statcounter.com/"><img class="statcounter" src="http://c.statcounter.com/7403264/0/ac8a3781/1/" alt="web analytics" /></a></div></noscript>
  736. <!-- End of StatCounter Code -->
  737. <!---- Pinterest Image Pin included this line ------->
  738. <!---- Shane Jones - www.shanejones.co.uk -->
  739. <script type="text/javascript">
  740. (function() {
  741. window.PinIt = window.PinIt || { loaded:false };
  742. if (window.PinIt.loaded) return;
  743. window.PinIt.loaded = true;
  744. function async_load(){
  745. var s = document.createElement("script");
  746. s.type = "text/javascript";
  747. s.async = true;
  748. if (window.location.protocol == "https:")
  749. s.src = "https://assets.pinterest.com/js/pinit.js";
  750. else
  751. s.src = "http://assets.pinterest.com/js/pinit.js";
  752. var x = document.getElementsByTagName("script")[0];
  753. x.parentNode.insertBefore(s, x);
  754. }
  755. if (window.attachEvent)
  756. window.attachEvent("onload", async_load);
  757. else
  758. window.addEventListener("load", async_load, false);
  759. })();
  760. </script>
  761. <!---- END Pinterest Image Pin -------------->
  762. <!-- tracker added by Ultimate Google Analytics plugin v1.6.0: http://www.oratransplant.nl/uga -->
  763. <script type="text/javascript">
  764. var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
  765. document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
  766. </script>
  767. <script type="text/javascript">
  768. var pageTracker = _gat._getTracker("UA-21715971-1");
  769. pageTracker._initData();
  770. pageTracker._trackPageview();
  771. </script>
  772. <script type="text/javascript" src="http://www.purenaturaldiva.com/wp-content/plugins/what-would-seth-godin-do/jquery.cookie.js"></script>
  773. <script type="text/javascript">
  774. jQuery(document).ready(function() {
  775. var count;
  776. if ( !jQuery.cookie('wwsgd_visits') ) {
  777. count = 1;
  778. }
  779. else {
  780. count = parseInt(jQuery.cookie('wwsgd_visits'), 10) + 1;
  781. }
  782. jQuery.cookie('wwsgd_visits', count, { expires: 365, path: "/" });
  783. if ( count <= 2 ) {
  784. jQuery(".wwsgd").show();
  785. }
  786. });
  787. </script>
  788. <script type='text/javascript' src='http://s.gravatar.com/js/gprofiles.js?aa&#038;ver=3.3.2'></script>
  789. <script type='text/javascript'>
  790. /* <![CDATA[ */
  791. var WPGroHo = {"my_hash":""};
  792. /* ]]> */
  793. </script>
  794. <script type='text/javascript' src='http://www.purenaturaldiva.com/wp-content/plugins/jetpack/modules/wpgroho.js?ver=3.3.2'></script>
  795. <div style="display:none">
  796. </div>
  797. <link rel='stylesheet' id='basecss-css' href='http://www.purenaturaldiva.com/wp-content/plugins/pinterest-image-pin/sdj_pip_main.css?ver=3.3.2' type='text/css' media='all' />
  798. <script type='text/javascript' src='http://www.purenaturaldiva.com/wp-content/plugins/contact-form-7/jquery.form.js?ver=2.96'></script>
  799. <script type='text/javascript'>
  800. /* <![CDATA[ */
  801. var _wpcf7 = {"loaderUrl":"http:\/\/www.purenaturaldiva.com\/wp-content\/plugins\/contact-form-7\/images\/ajax-loader.gif","sending":"Sending ...","cached":"1"};
  802. /* ]]> */
  803. </script>
  804. <script type='text/javascript' src='http://www.purenaturaldiva.com/wp-content/plugins/contact-form-7/scripts.js?ver=3.1.1'></script>
  805. <script src="http://stats.wordpress.com/e-201222.js" type="text/javascript"></script>
  806. <script type="text/javascript">
  807. st_go({v:'ext',j:'1:1.2.2',blog:'21368114',post:'0'});
  808. var load_cmc = function(){linktracker_init(21368114,0,2);};
  809. if ( typeof addLoadEvent != 'undefined' ) addLoadEvent(load_cmc);
  810. else load_cmc();
  811. </script>
  812. </div>
  813. </body>
  814. </html>
  815. <!-- Dynamic page generated in 1.757 seconds. -->
  816. <!-- Cached page generated by WP-Super-Cache on 2012-05-29 11:06:53 -->

↑ Top

Cleaned-up Source Listing with "HTML-Tidy"

Below is the cleaned up markup for your document, as processed through HTML-Tidy.

HTML-Tidy is a third-party software not developed at W3C, and its output is provided without any guarantee.

<html xmlns="http://www.w3.org/1999/xhtml" dir="ltr" lang="en-US" xml:lang="en-US">
<head profile="http://gmpg.org/xfn/11">
<meta name="generator" content="HTML Tidy for Linux (vers 6 November 2007), see www.w3.org" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="distribution" content="global" />
<meta name="language" content="en" />
<title>Pure Natural Living: Simple, healthy, less toxic, eco conscious, organic and fabulous!</title>
<link rel="Shortcut Icon" href="http://www.purenaturaldiva.com/wp-content/themes/lifestyle_31/images/favicon.ico" type="image/x-icon" />
<link rel="stylesheet" href="http://www.purenaturaldiva.com/wp-content/themes/lifestyle_31/style.css" type="text/css" media="screen" />
<link rel="alternate" type="application/rss+xml" title="Pure Natural Diva RSS Feed" href="http://www.purenaturaldiva.com/feed/" />
<link rel="alternate" type="application/atom+xml" title="Pure Natural Diva Atom Feed" href="http://www.purenaturaldiva.com/feed/atom/" />
<link rel="pingback" href="http://www.purenaturaldiva.com/xmlrpc.php" />
<style type="text/css">
/*<![CDATA[*/
.sp_link_16, .sp_link_32 {
   cursor: pointer;
   display: block;
   overflow: hidden;
}
.sp_link_16 {
   width: 16px;   
   height: 16px;   
}
.sp_link_32 {
   width: 32px;   
   height: 32px;   
}

.sp_linkback {
  text-align : center;
  display : block;
}

#sp_div_outer {
}
/*]]>*/
</style>
<link rel='stylesheet' id='tweetable-frontend-css' href='http://www.purenaturaldiva.com/wp-content/plugins/tweetable/main_css.css?ver=3.3.2' type='text/css' media='all' />
<link rel='stylesheet' id='contact-form-7-css' href='http://www.purenaturaldiva.com/wp-content/plugins/contact-form-7/styles.css?ver=3.1.1' type='text/css' media='all' />
<link rel='stylesheet' id='commentluv_style-css' href='http://www.purenaturaldiva.com/wp-content/plugins/commentluv/css/commentluv.css?ver=3.3.2' type='text/css' media='all' />
<link rel='stylesheet' id='gkl_postavatar_css-css' href='http://www.purenaturaldiva.com/wp-content/plugins/post-avatar/head/gkl-postavatar.css' type='text/css' media='all' />
<script type='text/javascript' src='https://ajax.googleapis.com/ajax/libs/jquery/1.6.0/jquery.min.js?ver=3.3.2'>
</script>
<script type='text/javascript'>
/* <![CDATA[ */
var cl_settings = {"name":"author","url":"url","comment":"comment","email":"email","infopanel":null,"default_on":"on","default_on_admin":null,"cl_version":"2.90.9.7","images":"http:\/\/www.purenaturaldiva.com\/wp-content\/plugins\/commentluv\/images\/","api_url":"http:\/\/www.purenaturaldiva.com\/wp-admin\/admin-ajax.php","_fetch":"2eab6c1699","_info":"f1c4023fb3","infoback":"white","infotext":null,"template_insert":"","logged_in":"","refer":"http:\/\/www.purenaturaldiva.com\/2012\/05\/key-west-images-a-romantic-getaway-to-the-reach-hotel\/","no_url_message":"Please enter a URL and then click the CommentLuv checkbox if you want to add your last blog post","no_http_message":"Please use http:\/\/ in front of your url","no_url_logged_in_message":"You need to visit your profile in the dashboard and update your details with your site URL","no_info_message":"No info was available or an error occured"};
/* ]]> */
</script>
<script type='text/javascript' src='http://www.purenaturaldiva.com/wp-content/plugins/commentluv/js/commentluv.js?ver=3.3.2'>
</script>
<link rel="EditURI" type="application/rsd+xml" title="RSD" href="http://www.purenaturaldiva.com/xmlrpc.php?rsd" />
<link rel="wlwmanifest" type="application/wlwmanifest+xml" href="http://www.purenaturaldiva.com/wp-includes/wlwmanifest.xml" />
<meta name="generator" content="WordPress 3.3.2" />
<link rel='shortlink' href='http://wp.me/1rEP0' /><!-- All in One SEO Pack 1.6.14.1 by Michael Torbert of Semper Fi Web Design[410,435] -->
<meta name="description" content="Simplify your life. Detoxify your life. Eco Savvy living without giving up style and performance. Pure Natural Living." />
<meta name="keywords" content="organic, green, natural, pure, skincare, health, beauty, reviews, giveaways, information, recipe, whole living, eco, savvy" />
<link rel="canonical" href="http://www.purenaturaldiva.com/" /><!-- /all in one seo pack -->
<link rel="stylesheet" href="http://www.purenaturaldiva.com/wp-content/plugins/digg-digg/include/../css/diggdigg-style.css?ver=5.2.3" type="text/css" media="screen" />
<link rel="image_src" href="http://www.purenaturaldiva.com/wp-content/uploads/2010/02/Optimized.41_2_3-150x150.jpg" /><!-- begin gallery scripts -->
<link rel="stylesheet" href="http://www.purenaturaldiva.com/wp-content/plugins/featured-content-gallery/css/jd.gallery.css.php" type="text/css" media="screen" charset="utf-8" />
<link rel="stylesheet" href="http://www.purenaturaldiva.com/wp-content/plugins/featured-content-gallery/css/jd.gallery.css" type="text/css" media="screen" charset="utf-8" />
<script type="text/javascript" src="http://www.purenaturaldiva.com/wp-content/plugins/featured-content-gallery/scripts/mootools.v1.11.js">
</script>
<script type="text/javascript" src="http://www.purenaturaldiva.com/wp-content/plugins/featured-content-gallery/scripts/jd.gallery.js.php">
</script>
<script type="text/javascript" src="http://www.purenaturaldiva.com/wp-content/plugins/featured-content-gallery/scripts/jd.gallery.transitions.js">
</script><!-- end gallery scripts -->
<!--== Pinterest Image Pin included this line =====-->
<!--== Shane Jones - www.shanejones.co.uk -->
<link type="text/css" rel="stylesheet" href="http://www.purenaturaldiva.com/wp-content/plugins/pinterest_image_pin/sdj_pip_main.css" /><!--== END Pinterest Image Pin ============-->
<link rel='image_src' href='http://www.purenaturaldiva.com/wp-content/uploads/2012/04/photo6.jpg' /><!-- Twitter @Anywhere Plus v2.0 by GeekRMX - http://www.ngeeks.com -->

<script src="http://platform.twitter.com/anywhere.js?id=4jdTnnYfGDxXDy4GD6r4Rg&amp;v=1" type="text/javascript">
</script>
<script type="text/javascript">
//<![CDATA[
twttr.anywhere(function (T) {
// configure the @anywhere environment
T.linkifyUsers();
T.hovercards();
});
//]]>
</script><!-- /Twitter @Anywhere Plus -->

<style type="text/css" media="all">
/* <![CDATA[ */
@import url("http://www.purenaturaldiva.com/wp-content/plugins/wp-table-reloaded/css/plugin.css?ver=1.9.3");
@import url("http://www.purenaturaldiva.com/wp-content/plugins/wp-table-reloaded/css/datatables.css?ver=1.9.3");
/* ]]> */
</style>

<script type="text/javascript">
<!--//--><![CDATA[//><!--
sfHover = function() {
        if (!document.getElementsByTagName) return false;
        var sfEls = document.getElementById("nav").getElementsByTagName("li");

        // if you only have one main menu - delete the line below //
        var sfEls1 = document.getElementById("subnav").getElementsByTagName("li");
        //

        for (var i=0; i<sfEls.length; i++) {
                sfEls[i].onmouseover=function() {
                        this.className+=" sfhover";
                }
                sfEls[i].onmouseout=function() {
                        this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
                }
        }

        // if you only have one main menu - delete the "for" loop below //
        for (var i=0; i<sfEls1.length; i++) {
                sfEls1[i].onmouseover=function() {
                        this.className+=" sfhover1";
                }
                sfEls1[i].onmouseout=function() {
                        this.className=this.className.replace(new RegExp(" sfhover1\\b"), "");
                }
        }
        //

}
if (window.attachEvent) window.attachEvent("onload", sfHover);
//--><!]]>
</script>
<style type="text/css">
/*<![CDATA[*/
        
        .jdGallery .slideInfoZone
        {
                height: 50px;
        }
/*]]>*/
</style>

<style type="text/css">
<a href="http://www.prchecker.info/" title="PageRank Checking Icon" target="_blank">
<img src="http://pr.prchecker.info/getpr.php?codex=aHR0cDovL3d3dy5wdXJlbmF0dXJhbGRpdmEuY29t&tag=2" alt="PageRank Checking Icon" style="border:0;" /></a>
<!-- BEGIN Attracta | Site 591876 | Badge 2 -->
<script type="text/javascript" src="http://cdn.attracta.com/badge/js/591876/core.js"></script><a href="http://cdn.attracta.com/badge/verify/591876.html"><img alt="Increase your website traffic with Attracta.com" style="border:0px" src="http://cdn.attracta.com/badge/img/591876/2.png"></a>
<!-- END Attracta --></div>
                </li>
<li id="meta-2" class="widget widget_meta"><h2 class="widgettitle">Inside Access</h2>
                        <ul>
                                                <li><a href="http://www.purenaturaldiva.com/wp-login.php">Log in</a></li>
                        <li><a href="http://www.purenaturaldiva.com/feed/" title="Syndicate this site using RSS 2.0">Entries <abbr title="Really Simple Syndication">RSS</abbr></a></li>
                        <li><a href="http://www.purenaturaldiva.com/comments/feed/" title="The latest comments to all posts in RSS">Comments <abbr title="Really Simple Syndication">RSS</abbr></a></li>
                        <li><a href="http://wordpress.org/" title="Powered by WordPress, state-of-the-art semantic personal publishing platform.">WordPress.org</a></li>
                                                </ul>
</li>

        </ul>
        
</div>

<!-- end r_sidebar -->  
</div>

<!-- end sidebar -->            
</div>

<!-- The main column ends  -->

<!-- begin footer -->

<div style="clear:both;"></div>

<div id="footer">

        <p>Copyright &copy; 2012 &middot; All Rights Reserved &middot; <a href="http://www.studiopress.com/themes/lifestyle" >Lifestyle theme</a> by <a href="http://www.studiopress.com" >StudioPress</a> &middot; Powered by <a href="http://www.wordpress.org/">WordPress</a> &middot; <a href="http://www.purenaturaldiva.com/wp-login.php">Log in</a></p>

</div>

        <!-- Start of StatCounter Code -->
        <script type="text/javascript">
        <!-- 
                var sc_project=7403264; 
                var sc_security="ac8a3781"; 
                var sc_invisible=1;
        //-->
        </script>
        <script type="text/javascript" src="http://www.statcounter.com/counter/counter_xhtml.js"></script>
<noscript><div class="statcounter"><a title="web analytics" href="http://statcounter.com/"><img class="statcounter" src="http://c.statcounter.com/7403264/0/ac8a3781/1/" alt="web analytics" /></a></div></noscript>    
        <!-- End of StatCounter Code -->

<!---- Pinterest Image Pin included this line ------->
<!---- Shane Jones - www.shanejones.co.uk -->
<script type="text/javascript">
                        (function() {
                                window.PinIt = window.PinIt || { loaded:false };
                                if (window.PinIt.loaded) return;
                                window.PinIt.loaded = true;
                                function async_load(){
                                        var s = document.createElement("script");
                                        s.type = "text/javascript";
                                        s.async = true;
                                        if (window.location.protocol == "https:")
                                                s.src = "https://assets.pinterest.com/js/pinit.js";
                                        else
                                                s.src = "http://assets.pinterest.com/js/pinit.js";
                                        var x = document.getElementsByTagName("script")[0];
                                        x.parentNode.insertBefore(s, x);
                                }
                                if (window.attachEvent)
                                        window.attachEvent("onload", async_load);
                                else
                                        window.addEventListener("load", async_load, false);
                        })();
                        </script>
<!---- END Pinterest Image Pin -------------->


<!-- tracker added by Ultimate Google Analytics plugin v1.6.0: http://www.oratransplant.nl/uga -->
<script type="text/javascript">
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
</script>
<script type="text/javascript">
var pageTracker = _gat._getTracker("UA-21715971-1");
pageTracker._initData();
pageTracker._trackPageview();
</script>
<script type="text/javascript" src="http://www.purenaturaldiva.com/wp-content/plugins/what-would-seth-godin-do/jquery.cookie.js"></script>
<script type="text/javascript">
    jQuery(document).ready(function() {
        var count;
        if ( !jQuery.cookie('wwsgd_visits') ) {
            count = 1;
        }
        else {
            count = parseInt(jQuery.cookie('wwsgd_visits'), 10) + 1;
        }
        jQuery.cookie('wwsgd_visits', count, { expires: 365, path: "/" });

        if ( count <= 2 ) {
            jQuery(".wwsgd").show();
        }
    });
</script>
<script type='text/javascript' src='http://s.gravatar.com/js/gprofiles.js?aa&#038;ver=3.3.2'></script>
<script type='text/javascript'>
/* <![CDATA[ */
var WPGroHo = {"my_hash":""};
/* ]]> */
</script>
<script type='text/javascript' src='http://www.purenaturaldiva.com/wp-content/plugins/jetpack/modules/wpgroho.js?ver=3.3.2'></script>
        <div style="display:none">
        </div>
<link rel='stylesheet' id='basecss-css'  href='http://www.purenaturaldiva.com/wp-content/plugins/pinterest-image-pin/sdj_pip_main.css?ver=3.3.2' type='text/css' media='all' />
<script type='text/javascript' src='http://www.purenaturaldiva.com/wp-content/plugins/contact-form-7/jquery.form.js?ver=2.96'></script>
<script type='text/javascript'>
/* <![CDATA[ */
var _wpcf7 = {"loaderUrl":"http:\/\/www.purenaturaldiva.com\/wp-content\/plugins\/contact-form-7\/images\/ajax-loader.gif","sending":"Sending ...","cached":"1"};
/* ]]> */
</script>
<script type='text/javascript' src='http://www.purenaturaldiva.com/wp-content/plugins/contact-form-7/scripts.js?ver=3.1.1'></script>

        <script src="http://stats.wordpress.com/e-201222.js" type="text/javascript"></script>
        <script type="text/javascript">
        st_go({v:'ext',j:'1:1.2.2',blog:'21368114',post:'0'});
        var load_cmc = function(){linktracker_init(21368114,0,2);};
        if ( typeof addLoadEvent != 'undefined' ) addLoadEvent(load_cmc);
        else load_cmc();
        </script>
</div>

</body>
</html>


<!-- Dynamic page generated in 1.757 seconds. -->
<!-- Cached page generated by WP-Super-Cache on 2012-05-29 11:06:53 -->
</style>

<style type="text/css">
/*<![CDATA[*/
 div.c35 {height:360px;padding-top:10px;}
 div.c34 {border:1px solid #D1D7DF;background-color:#F5F6F9;margin:0px auto;}
 div.c33 {font-size: 70%; padding: 5px}
 a.c32 {display:block;line-height:100%;width:90px;margin:0px auto;padding:4px 8px;text-align:center;background-color:#3b5998;border:1px solid #D9DFEA;border-bottom-color:#0e1f5b;border-right-color:#0e1f5b;color:#FFFFFF;font-family:'lucida grande',tahoma,verdana,arial,sans-serif;font-size:11px;text-decoration:none;}
 div.c31 {text-align: center;}
 div.c30 {background-color: #edeff4; font-size: 70%; height: 21px; margin: 0px; padding: 1px; text-align: center}
 img.c29 {border: none;}
 div.c28 {font-size: 70%; text-align: center}
 div.c27 {font-size: 70%}
 span.c26 {font-size: 70%}
 h2.c25 {font-size: 70%}
 img.c24 {border:none;}
 a.c23 {font-size: 15.4666666667pt;}
 a.c22 {font-size: 21.0666666667pt;}
 a.c21 {font-size: 18.2666666667pt;}
 a.c20 {font-size: 11.1111111111pt;}
 a.c19 {font-size: 21.5333333333pt;}
 a.c18 {font-size: 20.7555555556pt;}
 a.c17 {font-size: 13.2888888889pt;}
 a.c16 {font-size: 9.24444444444pt;}
 a.c15 {font-size: 22pt;}
 a.c14 {font-size: 14.3777777778pt;}
 a.c13 {font-size: 11.8888888889pt;}
 a.c12 {font-size: 19.8222222222pt;}
 a.c11 {font-size: 12.6666666667pt;}
 a.c10 {font-size: 8pt;}
 a.c9 {font-size: 13.9111111111pt;}
 a.c8 {font-size: 10.3333333333pt;}
 span.c7 {font-size:75%;}
 div.c6 {text-align: center}
 div.c5 {border-bottom:1px dotted #94B1DF; margin-bottom:10px; padding:0px 0px 10px 0px; clear:both;}
 img.c4 {float:left;margin:0px 10px 0px 0px;}
 div.c3 {clear:both;}
 img.c2 {vertical-align:middle;margin-left:10px;}
 img.c1 {vertical-align:middle}
/*]]>*/
</style>
</head>
<body>
<div id="wrap">
<div id="topnavbar">
<div class="topnavbarleft">
<p><script src="http://www.purenaturaldiva.com/wp-content/themes/lifestyle_31/javascript/date.js" type="text/javascript">
</script></p>
</div>
<div class="topnavbarright">
<p><a href="http://www.purenaturaldiva.com/feed/rss/"><img class="c1" src="http://www.purenaturaldiva.com/wp-content/themes/lifestyle_31/images/rss.gif" alt="Subscribe to Pure Natural Diva" /></a><a href="http://www.purenaturaldiva.com/feed/rss/">News Feed</a><a href="http://www.purenaturaldiva.com/comments/feed/"><img class="c2" src="http://www.purenaturaldiva.com/wp-content/themes/lifestyle_31/images/rss.gif" alt="Subscribe to Pure Natural Diva" /></a><a href="http://www.purenaturaldiva.com/comments/feed/">Comments</a></p>
</div>
</div>
<div id="header">
<div class="headerleft"><a href="http://www.purenaturaldiva.com/"><img src="http://www.purenaturaldiva.com/wp-content/themes/lifestyle_31/images/logo.png" alt="Pure Natural Diva" /></a></div>
<!--To define the 468x60 ad, go to your WP dashboard and go to Appearance > Widgets. Select 468x60 Header Banner and then enter your add code into a text widget-->
<div class="headerright">
<ul id="headerwidgeted">
<li><a href="#"><img src="http://www.purenaturaldiva.com/wp-content/themes/lifestyle_31/images/468x60.gif" alt="Advertisement" /></a></li>
</ul>
</div>
</div>
<div id="navbar">
<div id="navbarleft">
<ul id="nav">
<li><a href="http://www.purenaturaldiva.com">Home</a></li>
<li class="page_item page-item-4110"><a href="http://www.purenaturaldiva.com/media-services/">Media Services</a>
<ul class='children'>
<li class="page_item page-item-3498"><a href="http://www.purenaturaldiva.com/media-services/diva-social-media-consulting-services/">Media Services for Brands</a>
<ul class='children'>
<li class="page_item page-item-11006"><a href="http://www.purenaturaldiva.com/media-services/diva-social-media-consulting-services/pnd-media-kit/">PND Media Kit</a></li>
</ul>
</li>
<li class="page_item page-item-4765"><a href="http://www.purenaturaldiva.com/media-services/media-services-for-bloggers/">Media Services for Bloggers</a></li>
<li class="page_item page-item-4741"><a href="http://www.purenaturaldiva.com/media-services/diva-facts-figures-proof/">Pure Natural Diva Stats</a></li>
<li class="page_item page-item-466"><a href="http://www.purenaturaldiva.com/media-services/publicrelations/">Public Relations</a></li>
<li class="page_item page-item-1425"><a href="http://www.purenaturaldiva.com/media-services/advertising/">Advertising</a></li>
</ul>
</li>
<li class="page_item page-item-8806"><a href="http://www.purenaturaldiva.com/natural-organic-beauty-personalcare-product-guide-database-resource/">PND Product Guide</a></li>
<li class="page_item page-item-10194"><a href="http://www.purenaturaldiva.com/pure-natural-4d-event/">#diva4d</a>
<ul class='children'>
<li class="page_item page-item-10287"><a href="http://www.purenaturaldiva.com/pure-natural-4d-event/diva4d-event-partners-in-kind-donors/">Diva4d Event Partners &amp; In Kind Donors</a></li>
</ul>
</li>
<li class="page_item page-item-287"><a href="http://www.purenaturaldiva.com/about-2/">About PND</a>
<ul class='children'>
<li class="page_item page-item-2"><a href="http://www.purenaturaldiva.com/about-2/about/">Welcome</a></li>
<li class="page_item page-item-7748"><a href="http://www.purenaturaldiva.com/about-2/meet-our-writers/">Meet Our Writers</a></li>
<li class="page_item page-item-8 current_page_parent"><a href="http://www.purenaturaldiva.com/about-2/my-approach/">Tania's Approach</a>
<ul class='children'>
<li class="page_item page-item-13"><a href="http://www.purenaturaldiva.com/about-2/my-approach/the-food-we-eat/">The Food We Eat</a></li>
<li class="page_item page-item-567"><a href="http://www.purenaturaldiva.com/about-2/my-approach/my-shopping-lists/">My Shopping Lists</a>
<ul class='children'>
<li class="page_item page-item-569"><a href="http://www.purenaturaldiva.com/about-2/my-approach/my-shopping-lists/grocery-items/">Grocery Items</a></li>
</ul>
</li>
<li class="page_item page-item-552"><a href="http://www.purenaturaldiva.com/about-2/my-approach/glossary-of-abbreviations/">Glossary of Abbreviations</a></li>
<li class="page_item page-item-2275"><a href="http://www.purenaturaldiva.com/about-2/my-approach/green-your/">Green Your….</a></li>
</ul>
</li>
<li class="page_item page-item-6559"><a href="http://www.purenaturaldiva.com/about-2/101-things-about-me/">101 Things You May Not Know About Tania</a></li>
<li class="page_item page-item-648"><a href="http://www.purenaturaldiva.com/about-2/subscribe-to-pure-natural-diva/">Pure Natural Diva Newsletter</a></li>
<li class="page_item page-item-459"><a href="http://www.purenaturaldiva.com/about-2/about-diva-reviews/">About PND Reviews</a></li>
<li class="page_item page-item-1218"><a href="http://www.purenaturaldiva.com/about-2/disclaimer-and-terms-of-use/">Terms of Use</a></li>
</ul>
</li>
<li class="page_item page-item-1550"><a href="http://www.purenaturaldiva.com/divas-blogroll/">Blogroll</a>
<ul class='children'>
<li class="page_item page-item-5499"><a href="http://www.purenaturaldiva.com/divas-blogroll/skinny-scoop/">Skinny Scoop!</a></li>
<li class="page_item page-item-7094"><a href="http://www.purenaturaldiva.com/divas-blogroll/social-media-moms/">Social Media Moms</a></li>
<li class="page_item page-item-1580"><a href="http://www.purenaturaldiva.com/divas-blogroll/diva-link-exchanges/">Link Exchanges</a></li>
<li class="page_item page-item-2270"><a href="http://www.purenaturaldiva.com/divas-blogroll/diva-hangouts/">Web Hangouts</a>
<ul class='children'>
<li class="page_item page-item-1934"><a href="http://www.purenaturaldiva.com/divas-blogroll/diva-hangouts/diva-round-the-web/">Around the Web</a></li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
<div id="navbarright">
<form id="searchform" method="get" action="/index.php"><input type="text" value="Search this website..." name="s" id="searchbox" onfocus="if (this.value == 'Search this website...') {this.value = '';}" onblur="if (this.value == '') {this.value = 'Search this website...';}" /> <input type="submit" id="searchbutton" value="GO" /></form>
</div>
</div>
<div class="c3"></div>
<div id="subnavbar">
<ul id="subnav">
<li class="cat-item cat-item-853"><a href="http://www.purenaturaldiva.com/category/beauty-fashion/" title="View all posts filed under Beauty">Beauty</a>
<ul class='children'>
<li class="cat-item cat-item-448"><a href="http://www.purenaturaldiva.com/category/beauty-fashion/dude-grooming/" title="View all posts filed under Dude's">Dude's</a></li>
<li class="cat-item cat-item-7"><a href="http://www.purenaturaldiva.com/category/beauty-fashion/personal-care-products/" title="View all posts filed under Personal Care Products">Personal Care Products</a></li>
<li class="cat-item cat-item-18"><a href="http://www.purenaturaldiva.com/category/beauty-fashion/skin-care/" title="View all posts filed under Skin Care">Skin Care</a></li>
</ul>
</li>
<li class="cat-item cat-item-1072"><a href="http://www.purenaturaldiva.com/category/community-2/" title="View all posts filed under Community">Community</a></li>
<li class="cat-item cat-item-5"><a href="http://www.purenaturaldiva.com/category/parenting/" title="View all posts filed under Family &amp; Parenting">Family &amp; Parenting</a>
<ul class='children'>
<li class="cat-item cat-item-278"><a href="http://www.purenaturaldiva.com/category/parenting/back-to-school/" title="View all posts filed under Back To School">Back To School</a></li>
<li class="cat-item cat-item-15"><a href="http://www.purenaturaldiva.com/category/parenting/eco-friendly-green-infant-childcare/" title="View all posts filed under Infant &amp; Childcare">Infant &amp; Childcare</a></li>
<li class="cat-item cat-item-16"><a href="http://www.purenaturaldiva.com/category/parenting/natural-childbirth/" title="View all posts filed under Natural Childbirth">Natural Childbirth</a></li>
</ul>
</li>
<li class="cat-item cat-item-9"><a href="http://www.purenaturaldiva.com/category/food-diet/" title="View all posts filed under Food &amp; Nutrition">Food &amp; Nutrition</a>
<ul class='children'>
<li class="cat-item cat-item-218"><a href="http://www.purenaturaldiva.com/category/food-diet/label-reading-phd/" title="View all posts filed under Label Reading PHD">Label Reading PHD</a></li>
<li class="cat-item cat-item-119"><a href="http://www.purenaturaldiva.com/category/food-diet/my-pantry/" title="View all posts filed under My Pantry">My Pantry</a></li>
<li class="cat-item cat-item-17"><a href="http://www.purenaturaldiva.com/category/food-diet/preservatives-additives/" title="View all posts filed under Preservatives &amp; Additives">Preservatives &amp; Additives</a></li>
<li class="cat-item cat-item-172"><a href="http://www.purenaturaldiva.com/category/food-diet/healthy-recipes-whole-grain/" title="View all posts filed under Recipes">Recipes</a></li>
</ul>
</li>
<li class="cat-item cat-item-663"><a href="http://www.purenaturaldiva.com/category/organic-pure-natural-living/" title="View all posts filed under Pure Natural Living">Pure Natural Living</a>
<ul class='children'>
<li class="cat-item cat-item-1220"><a href="http://www.purenaturaldiva.com/category/organic-pure-natural-living/vlogmom/" title="View all posts filed under #VlogMom">#VlogMom</a></li>
<li class="cat-item cat-item-242"><a href="http://www.purenaturaldiva.com/category/organic-pure-natural-living/ask-tania/" title="View all posts filed under Ask Tania">Ask Tania</a></li>
<li class="cat-item cat-item-6"><a href="http://www.purenaturaldiva.com/category/organic-pure-natural-living/natural-beauty-organic-pure-natural-living/" title="View all posts filed under Better Beauty">Better Beauty</a></li>
<li class="cat-item cat-item-1143"><a href="http://www.purenaturaldiva.com/category/organic-pure-natural-living/savvy-fashion/" title="View all posts filed under Fashion">Fashion</a></li>
<li class="cat-item cat-item-361"><a href="http://www.purenaturaldiva.com/category/organic-pure-natural-living/diva-online/" title="View all posts filed under Find PND Online">Find PND Online</a></li>
<li class="cat-item cat-item-1144"><a href="http://www.purenaturaldiva.com/category/organic-pure-natural-living/fitness/" title="View all posts filed under Fitness">Fitness</a></li>
<li class="cat-item cat-item-11"><a href="http://www.purenaturaldiva.com/category/organic-pure-natural-living/health-wellness-natural-organic-remedies/" title="View all posts filed under Health &amp; Wellness">Health &amp; Wellness</a></li>
<li class="cat-item cat-item-852"><a href="http://www.purenaturaldiva.com/category/organic-pure-natural-living/house-garden-eco-green/" title="View all posts filed under Home">Home</a>
<ul class='children'>
<li class="cat-item cat-item-8"><a href="http://www.purenaturaldiva.com/category/organic-pure-natural-living/house-garden-eco-green/green-clean-house/" title="View all posts filed under Clean House">Clean House</a></li>
<li class="cat-item cat-item-3"><a href="http://www.purenaturaldiva.com/category/organic-pure-natural-living/house-garden-eco-green/green-entertaining-easy/" title="View all posts filed under Entertaining">Entertaining</a></li>
<li class="cat-item cat-item-4"><a href="http://www.purenaturaldiva.com/category/organic-pure-natural-living/house-garden-eco-green/garden-home/" title="View all posts filed under Garden">Garden</a></li>
<li class="cat-item cat-item-691"><a href="http://www.purenaturaldiva.com/category/organic-pure-natural-living/house-garden-eco-green/gift-guide/" title="View all posts filed under Gift Guide">Gift Guide</a></li>
<li class="cat-item cat-item-10"><a href="http://www.purenaturaldiva.com/category/organic-pure-natural-living/house-garden-eco-green/green-living/" title="View all posts filed under Green Living">Green Living</a></li>
<li class="cat-item cat-item-597"><a href="http://www.purenaturaldiva.com/category/organic-pure-natural-living/house-garden-eco-green/holidays-eco-green-savvy-holiday/" title="View all posts filed under Holidays">Holidays</a></li>
<li class="cat-item cat-item-12"><a href="http://www.purenaturaldiva.com/category/organic-pure-natural-living/house-garden-eco-green/home/" title="View all posts filed under Home">Home</a></li>
</ul>
</li>
<li class="cat-item cat-item-102"><a href="http://www.purenaturaldiva.com/category/organic-pure-natural-living/news/" title="View all posts filed under In the News">In the News</a></li>
<li class="cat-item cat-item-1221"><a href="http://www.purenaturaldiva.com/category/organic-pure-natural-living/made-in-the-usa/" title="View all posts filed under Made In the USA">Made In the USA</a></li>
<li class="cat-item cat-item-1217"><a href="http://www.purenaturaldiva.com/category/organic-pure-natural-living/mail-organic-pure-natural-living/" title="View all posts filed under Mail!">Mail!</a></li>
<li class="cat-item cat-item-65"><a href="http://www.purenaturaldiva.com/category/organic-pure-natural-living/save-green-natural-food-saving-ecofriendly-organic/" title="View all posts filed under Money Saving Offers">Money Saving Offers</a></li>
<li class="cat-item cat-item-73"><a href="http://www.purenaturaldiva.com/category/organic-pure-natural-living/musings/" title="View all posts filed under Musings">Musings</a></li>
<li class="cat-item cat-item-158"><a href="http://www.purenaturaldiva.com/category/organic-pure-natural-living/nitty-gritty/" title="View all posts filed under Nitty Gritty – the details">Nitty Gritty - the details</a></li>
<li class="cat-item cat-item-146"><a href="http://www.purenaturaldiva.com/category/organic-pure-natural-living/easy-green-living-solutions-information/" title="View all posts filed under Savvy Living Guide">Savvy Living Guide</a></li>
<li class="cat-item cat-item-25"><a href="http://www.purenaturaldiva.com/category/organic-pure-natural-living/green-living-simple-solutions/" title="View all posts filed under Simple Solutions">Simple Solutions</a></li>
<li class="cat-item cat-item-169"><a href="http://www.purenaturaldiva.com/category/organic-pure-natural-living/start-your-own-blog/" title="View all posts filed under Start Your Own Site">Start Your Own Site</a>
<ul class='children'>
<li class="cat-item cat-item-307"><a href="http://www.purenaturaldiva.com/category/organic-pure-natural-living/start-your-own-blog/entrecard-drop-list/" title="View all posts filed under Entrecard">Entrecard</a></li>
</ul>
</li>
<li class="cat-item cat-item-74"><a href="http://www.purenaturaldiva.com/category/organic-pure-natural-living/does-it-really-matter/" title="View all posts filed under Why Bother?">Why Bother?</a></li>
<li class="cat-item cat-item-620"><a href="http://www.purenaturaldiva.com/category/organic-pure-natural-living/wordless-wednesday/" title="View all posts filed under Wordless Wednesday">Wordless Wednesday</a></li>
<li class="cat-item cat-item-209"><a href="http://www.purenaturaldiva.com/category/organic-pure-natural-living/worth-sharing/" title="View all posts filed under Worth Sharing">Worth Sharing</a></li>
</ul>
</li>
<li class="cat-item cat-item-851"><a href="http://www.purenaturaldiva.com/category/review-giveaways/" title="View all posts filed under Review &amp; Giveaways">Review &amp; Giveaways</a>
<ul class='children'>
<li class="cat-item cat-item-285"><a href="http://www.purenaturaldiva.com/category/review-giveaways/giveaways/" title="View all posts filed under Giveaways">Giveaways</a></li>
<li class="cat-item cat-item-14"><a href="http://www.purenaturaldiva.com/category/review-giveaways/green-beauty-product-reviews/" title="View all posts filed under Reviews">Reviews</a></li>
</ul>
</li>
<li class="cat-item cat-item-296"><a href="http://www.purenaturaldiva.com/category/travel/" title="View all posts filed under Travel">Travel</a>
<ul class='children'>
<li class="cat-item cat-item-1153"><a href="http://www.purenaturaldiva.com/category/travel/hotel-review/" title="View all posts filed under Hotel Review">Hotel Review</a></li>
<li class="cat-item cat-item-1152"><a href="http://www.purenaturaldiva.com/category/travel/restaurant-review/" title="View all posts filed under Restaurant Review">Restaurant Review</a></li>
</ul>
</li>
<li class="cat-item cat-item-1052"><a href="http://www.purenaturaldiva.com/category/unplugged-off-topic/" title="The focus of PND is to inspire you to a greener, healthier life. On occasion I find myself wanting or needed to stray from that focus... this is my place to share those thoughts.">Unplugged &amp; Off Topic</a></li>
</ul>
</div>
<div class="c3"></div>
<div id="content">
<div id="homepage">
<div id="homepagetop">
<div class="featuredtop" id="featured"><script type="text/javascript">
//<![CDATA[
        function startGallery() {
            var myGallery = new gallery($('myGallery'), {
                timed: true
            });
        }
        window.addEvent('domready',startGallery);
//]]>
</script>
<div id="myGallery">
<div class="imageElement">
<h2>An Orange Juice Nation</h2>
<a href="http://www.purenaturaldiva.com/2010/11/the-juice-on-juice/" title="Read More" class="open"></a> <img src="http://www.purenaturaldiva.com/wp-content/uploads/2010/11/Picture-781.png" alt="" class="full" /> <img src="" alt="" class="thumbnail" /></div>
<div class="imageElement">
<h2>Tips for Greener Living</h2>
<p>Simple steps anyone can take to live greener.</p>
<a href="http://www.purenaturaldiva.com/2010/02/diva-tips-for-greener-living/" title="Read More" class="open"></a> <img src="http://www.purenaturaldiva.com/wp-content/uploads/2010/02/main1.jpg" alt="" class="full" /> <img src="" alt="" class="thumbnail" /></div>
<div class="imageElement">
<h2>How to Make Foaming Soap</h2>
<p>Easy and inexpensive - Anyone can do it!</p>
<a href="http://www.purenaturaldiva.com/2009/08/foaming-hand-soap-recipe/" title="Read More" class="open"></a> <img src="http://www.purenaturaldiva.com/wp-content/uploads/2010/02/main2.jpg" alt="" class="full" /> <img src="" alt="" class="thumbnail" /></div>
<div class="imageElement">
<h2>How Much Radiation Does Your Phone Emit? iphone fairs poorly</h2>
<p>Don't Give Up Your Phone - Minimize Your Risk</p>
<a href="http://www.purenaturaldiva.com/2009/09/how-much-radiation-does-your-phone-emit-iphone-fairs-poorly/" title="Read More" class="open"></a> <img src="http://farm5.static.flickr.com/4045/4391883926_5bb56c5594_o.jpg" alt="" class="full" /> <img src="" alt="" class="thumbnail" /></div>
<div class="imageElement">
<h2>Sephora Natural &amp; Organic: How do they Rate?</h2>
<p>Organic and Natural Doesn't Always Mean Safer.</p>
<a href="http://www.purenaturaldiva.com/2011/01/sephora-natural-organic-how-do-they-rate/" title="Read More" class="open"></a> <img src="http://www.purenaturaldiva.com/wp-content/uploads/2010/03/SephoraOrchid.jpg" alt="" class="full" /> <img src="" alt="" class="thumbnail" /></div>
<div class="imageElement">
<h2>More Vegetables Please? Getting Your Kids to Eat Vegetables</h2>
<a href="http://www.purenaturaldiva.com/2010/03/more-vegetables-please/" title="Read More" class="open"></a> <img src="http://www.purenaturaldiva.com/wp-content/uploads/2009/06/dicedvegetables.jpg" alt="" class="full" /> <img src="" alt="" class="thumbnail" /></div>
</div>
</div>
</div>
<div class="hpfeatured" id="homepageleft">
<h3>Food &amp; Nutrition</h3>
<a href="http://www.purenaturaldiva.com/2012/04/pumpkin-pancake-recipe/" rel="bookmark"><img class="c4" src="http://www.purenaturaldiva.com/wp-content/themes/lifestyle_31/tools/timthumb.php?src=http://www.purenaturaldiva.com/wp-content/uploads/2012/04/photo1.jpg&amp;h=100&amp;w=&amp;zc=1" alt="Pumpkin Pancake Recipe" /></a> <strong><a href="http://www.purenaturaldiva.com/2012/04/pumpkin-pancake-recipe/" rel="bookmark">Pumpkin Pancake Recipe</a></strong>
<p>Amazing 100% Whole Grain Pumpkin Pancake Recipe Not too long ago I was eating at... <a href='http://www.purenaturaldiva.com/2012/04/pumpkin-pancake-recipe/'></a></p>
<div class="c5"></div>
<a href="http://www.purenaturaldiva.com/2012/03/ceasar-salad-recipe/" rel="bookmark"><img class="c4" src="http://www.purenaturaldiva.com/wp-content/themes/lifestyle_31/tools/timthumb.php?src=http://www.purenaturaldiva.com/wp-content/uploads/2012/03/photo2.jpg&amp;h=100&amp;w=&amp;zc=1" alt="Ceasar Salad Recipe" /></a> <strong><a href="http://www.purenaturaldiva.com/2012/03/ceasar-salad-recipe/" rel="bookmark">Ceasar Salad Recipe</a></strong>
<p>Try this Fast &amp; Easy Ceasar Salad Recipe for Dinner What I love about this Ceasar... <a href='http://www.purenaturaldiva.com/2012/03/ceasar-salad-recipe/'></a></p>
<div class="c5"></div>
<a href="http://www.purenaturaldiva.com/2012/03/homemade-facial-mask-for-dry-skin/" rel="bookmark"><img class="c4" src="http://www.purenaturaldiva.com/wp-content/themes/lifestyle_31/tools/timthumb.php?src=http://www.purenaturaldiva.com/wp-content/uploads/2012/02/photo1.jpg&amp;h=100&amp;w=&amp;zc=1" alt="Homemade Facial Mask for Dry Skin" /></a> <strong><a href="http://www.purenaturaldiva.com/2012/03/homemade-facial-mask-for-dry-skin/" rel="bookmark">Homemade Facial Mask for Dry Skin</a></strong>
<p>Simple Homemade Facial Mask For Dry Skin My skin has been SO dry this winter. ... <a href='http://www.purenaturaldiva.com/2012/03/homemade-facial-mask-for-dry-skin/'></a></p>
<div class="c5"></div>
<a href="http://www.purenaturaldiva.com/2012/01/8-simple-tips-for-hosting-a-healthier-superbowl-party/" rel="bookmark"><img class="c4" src="http://www.purenaturaldiva.com/wp-content/themes/lifestyle_31/tools/timthumb.php?src=http://www.purenaturaldiva.com/wp-content/uploads/2011/01/IMG_1454.jpg&amp;h=100&amp;w=&amp;zc=1" alt="8 Simple Tips For Hosting a Healthier Superbowl Party" /></a> <strong><a href="http://www.purenaturaldiva.com/2012/01/8-simple-tips-for-hosting-a-healthier-superbowl-party/" rel="bookmark">8 Simple Tips For Hosting a Healthier Superbowl Party</a></strong>
<p>Superbowl… quite possibly THE party of the year in many homes across the country. ... <a href='http://www.purenaturaldiva.com/2012/01/8-simple-tips-for-hosting-a-healthier-superbowl-party/'></a></p>
<div class="c5"></div>
<strong><a href="http://www.purenaturaldiva.com/category/food-diet/" rel="bookmark">Read More Posts From This Category</a></strong></div>
<div class="hpfeatured" id="homepageright">
<h3>Review &amp; Giveaways</h3>
<!--This is where the thumbnails are found for the homepage bottom section - note the custom field name for this image is "thumbnail". Recommended image size is 70x70, as the stylesheet is written for this size.-->
<a href="http://www.purenaturaldiva.com/2012/05/key-west-images-a-romantic-getaway-to-the-reach-hotel/" rel="bookmark"><img class="c4" src="http://www.purenaturaldiva.com/wp-content/themes/lifestyle_31/tools/timthumb.php?src=http://www.purenaturaldiva.com/wp-content/uploads/2012/05/photo5.jpg&amp;h=100&amp;w=&amp;zc=1" alt="Key West Images: A Romantic Getaway to the Reach Hotel" /></a> <strong><a href="http://www.purenaturaldiva.com/2012/05/key-west-images-a-romantic-getaway-to-the-reach-hotel/" rel="bookmark">Key West Images: A Romantic Getaway to the Reach Hotel</a></strong>
<p>      Key West Images: A Romantic Getaway to the Reach Hotel We recently... <a href='http://www.purenaturaldiva.com/2012/05/key-west-images-a-romantic-getaway-to-the-reach-hotel/'></a></p>
<div class="c5"></div>
<a href="http://www.purenaturaldiva.com/2011/11/doublebounce-review/" rel="bookmark"><img class="c4" src="http://www.purenaturaldiva.com/wp-content/themes/lifestyle_31/tools/timthumb.php?src=http://www.purenaturaldiva.com/wp-content/uploads/2011/11/photo1.jpg&amp;h=100&amp;w=&amp;zc=1" alt="JumpSport DoubleBounce Trampoline Review" /></a> <strong><a href="http://www.purenaturaldiva.com/2011/11/doublebounce-review/" rel="bookmark">JumpSport DoubleBounce Trampoline Review</a></strong>
<p>Yes.  I said DoubleBounce! We stalked trampolines for a couple of years…... <a href='http://www.purenaturaldiva.com/2011/11/doublebounce-review/'></a></p>
<div class="c5"></div>
<a href="http://www.purenaturaldiva.com/2011/10/daily-moisturizer-spf/" rel="bookmark"><img class="c4" src="http://www.purenaturaldiva.com/wp-content/themes/lifestyle_31/tools/timthumb.php?src=http://www.purenaturaldiva.com/wp-content/uploads/2011/10/4313733705_3db563386a_b.jpg&amp;h=100&amp;w=&amp;zc=1" alt="PND Approved Daily Moisturizer with SPF" /></a> <strong><a href="http://www.purenaturaldiva.com/2011/10/daily-moisturizer-spf/" rel="bookmark">PND Approved Daily Moisturizer with SPF</a></strong>
<p>Daily Moisturizer with SPF an Essential Element of Every Anti Aging Toolbox     Every... <a href='http://www.purenaturaldiva.com/2011/10/daily-moisturizer-spf/'></a></p>
<div class="c5"></div>
<a href="http://www.purenaturaldiva.com/2011/05/zookeeper-movie-trailer-family-friendly-fun/" rel="bookmark"><img class="c4" src="http://www.purenaturaldiva.com/wp-content/themes/lifestyle_31/tools/timthumb.php?src=http://www.purenaturaldiva.com/wp-content/uploads/2010/02/Optimized.41_2_3.jpg&amp;h=100&amp;w=&amp;zc=1" alt="Zookeeper: Fun Movie for the Whole Family" /></a> <strong><a href="http://www.purenaturaldiva.com/2011/05/zookeeper-movie-trailer-family-friendly-fun/" rel="bookmark">Zookeeper: Fun Movie for the Whole Family</a></strong>
<p>          Plan For a Little Zookeeper Fun I am excited... <a href='http://www.purenaturaldiva.com/2011/05/zookeeper-movie-trailer-family-friendly-fun/'></a></p>
<div class="c5"></div>
<strong><a href="http://www.purenaturaldiva.com/category/review-giveaways/" rel="bookmark">Read More Posts From This Category</a></strong></div>
<div class="hpbottom" id="homepagebottom">
<h3>Pure Natural Living</h3>
<strong><a href="http://www.purenaturaldiva.com/2012/05/vlogmom-character-flaws-weakness/" rel="bookmark">#Vlogmom: Character Flaws &amp; Weakness'</a></strong>
<p>      This week for vlogmom we are sharing our biggest character flaw or something we struggle with. Next week we are going to be digging into our junk drawer sharing 3 things and tell their stories - thank you Megan Crume!  <a href='http://www.purenaturaldiva.com/2012/05/vlogmom-character-flaws-weakness/'>Read More →</a></p>
<div class="c5"></div>
<a href="http://www.purenaturaldiva.com/2012/05/mineral-make-up-ingredients-to-avoid/" rel="bookmark"><img class="c4" src="http://www.purenaturaldiva.com/wp-content/themes/lifestyle_31/tools/timthumb.php?src=http://www.purenaturaldiva.com/wp-content/uploads/2012/05/photo2.jpg&amp;h=150&amp;w=&amp;zc=1" alt="Mineral Make Up Ingredients To Avoid" /></a> <strong><a href="http://www.purenaturaldiva.com/2012/05/mineral-make-up-ingredients-to-avoid/" rel="bookmark">Mineral Make Up Ingredients To Avoid</a></strong>
<p>Mineral Make Up Ingredients To Avoid Mineral Make Up is a great option for those looking for natural beauty solutions.  Mineral Make Up is even billed as good for your skin - so much so that you can sleep in it… I'm not sure I would go that far, but I do believe they offer a better beauty option to those looking for the purest... <a href='http://www.purenaturaldiva.com/2012/05/mineral-make-up-ingredients-to-avoid/'>[Read more of this review]</a></p>
<div class="c5"></div>
<a href="http://www.purenaturaldiva.com/2012/05/attachement-parenting-takes-the-cover-of-time-magazine-america-is-talking-about-jamie-lynn/" rel="bookmark"><img class="c4" src="http://www.purenaturaldiva.com/wp-content/themes/lifestyle_31/tools/timthumb.php?src=http://www.purenaturaldiva.com/wp-content/uploads/2012/05/photo1.jpg&amp;h=150&amp;w=&amp;zc=1" alt="Attachement Parenting Takes the cover of Time Magazine &amp; America IS Talking about Jamie Lynne" /></a> <strong><a href="http://www.purenaturaldiva.com/2012/05/attachement-parenting-takes-the-cover-of-time-magazine-america-is-talking-about-jamie-lynn/" rel="bookmark">Attachement Parenting Takes the cover of Time Magazine &amp; America IS Talking about Jamie Lynne</a></strong>
<p>Attachement Parenting Takes the cover of Time Magazine &amp; America IS Talking about Jamie Lynne A few short days ago, Los Angeles Blogger Jamie Lynne Grumet was invited to be photographed for Time Magazine nursing her soon to be 4 year old son, Time ended up used Jamie's photo for the cover.  The picture and the story had been picked up almost... <a href='http://www.purenaturaldiva.com/2012/05/attachement-parenting-takes-the-cover-of-time-magazine-america-is-talking-about-jamie-lynn/'>[Read more of this review]</a></p>
<div class="c5"></div>
<strong><a href="http://www.purenaturaldiva.com/2012/05/vlogmom-which-tv-show-would-you-want-to-appear-as-a-guest/" rel="bookmark">#VlogMom: Which TV Show Would You Want to Appear as a Guest?</a></strong>
<p>    This weeks #vlogmom question comes from Jenn Bullock of Mommy B Knows Best - Share the Television Show Would You Want to be a Guest. I had to think about this one.. Next week our Vlogmom topic will be: What is Your Biggest "Character Flaw" or something you struggle with?  <a href='http://www.purenaturaldiva.com/2012/05/vlogmom-which-tv-show-would-you-want-to-appear-as-a-guest/'>Read More →</a></p>
<div class="c5"></div>
<strong><a href="http://www.purenaturaldiva.com/2012/05/what-we-can-learn-from-the-kashi-cereal-scandal/" rel="bookmark">What We Can Learn From the Kashi Cereal Scandal</a></strong>
<p>A Rhode Island Grocer pulled Kashi Cereal from the shelves after finding the cereal contained genetically modified soy and traces of pesticide residue, feeling misled by this natural brand consumers have flooded the Kashi Facebook page in outrage. My thoughts and what we as consumers can take away from the kashi cereal scandal.  <a href='http://www.purenaturaldiva.com/2012/05/what-we-can-learn-from-the-kashi-cereal-scandal/'>Read More →</a></p>
<div class="c5"></div>
<strong><a href="http://www.purenaturaldiva.com/2012/05/vlogmom-what-keeps-you-sane/" rel="bookmark">#VlogMom: What Keeps You Sane?</a></strong>
<p>What Keeps You Sane? This weeks #VlogMom topic is what keeps you sane brought to you by my good friend Desiree Miller from Stress Free Baby?    <a href='http://www.purenaturaldiva.com/2012/05/vlogmom-what-keeps-you-sane/'>Read More →</a></p>
<div class="c5"></div>
<a href="http://www.purenaturaldiva.com/2012/05/wordless-wedsnesday-dogs-in-motion/" rel="bookmark"><img class="c4" src="http://www.purenaturaldiva.com/wp-content/themes/lifestyle_31/tools/timthumb.php?src=http://www.purenaturaldiva.com/wp-content/uploads/2012/05/photo.jpg&amp;h=150&amp;w=&amp;zc=1" alt="Wordless Wedsnesday: Dogs in Motion" /></a> <strong><a href="http://www.purenaturaldiva.com/2012/05/wordless-wedsnesday-dogs-in-motion/" rel="bookmark">Wordless Wedsnesday: Dogs in Motion</a></strong>
<p>  My husband captured this incredible moment between our new foster Disney (the blue Pitt Bull) and Diva! Disney is a Blue Pitt Bull who was rescued out of Baldwin Park in Los Angeles.  He arrived in horrible condition, he almost didn't survive -  his sister who came in with him didn't make it. We are busy teaching Disney his manners,... <a href='http://www.purenaturaldiva.com/2012/05/wordless-wedsnesday-dogs-in-motion/'>[Read more of this review]</a></p>
<div class="c5"></div>
<strong><a href="http://www.purenaturaldiva.com/2012/05/what-is-mineral-make-up/" rel="bookmark">What is Mineral Make Up?</a></strong>
<p>What is Mineral Make Up?  PND is working on a series that will share our favorite Mineral Make Up products with you, but first we wanted to answer a question we get asked a lot - What is Mineral Make Up?   What is you favorite Mineral Make Up?  <a href='http://www.purenaturaldiva.com/2012/05/what-is-mineral-make-up/'>Read More →</a></p>
<div class="c5"></div>
<a href="http://www.purenaturaldiva.com/2012/04/bubble-rollers-vlogmom/" rel="bookmark"><img class="c4" src="http://www.purenaturaldiva.com/wp-content/themes/lifestyle_31/tools/timthumb.php?src=http://www.purenaturaldiva.com/wp-content/uploads/2012/04/photo6.jpg&amp;h=150&amp;w=&amp;zc=1" alt="Bubble Rollers: Good for a Giggle" /></a> <strong><a href="http://www.purenaturaldiva.com/2012/04/bubble-rollers-vlogmom/" rel="bookmark">Bubble Rollers: Good for a Giggle</a></strong>
<p>#VLOGMOM:  Share One Thing You've Done Recently that Scared You This week for #vlogmom we were asked to share one thing that we have done recently that scared us…It just happened that I have footage of a recent bubble roller experience.  Only a handful of adults gave it a spin… and of course the children left each of us in... <a href='http://www.purenaturaldiva.com/2012/04/bubble-rollers-vlogmom/'>[Read more of this review]</a></p>
<div class="c5"></div>
<a href="http://www.purenaturaldiva.com/2012/04/new-spring-fashion/" rel="bookmark"><img class="c4" src="http://www.purenaturaldiva.com/wp-content/themes/lifestyle_31/tools/timthumb.php?src=http://www.purenaturaldiva.com/wp-content/uploads/2012/04/photo3.jpg&amp;h=150&amp;w=&amp;zc=1" alt="New Spring Fashion: Dinner with the Girls" /></a> <strong><a href="http://www.purenaturaldiva.com/2012/04/new-spring-fashion/" rel="bookmark">New Spring Fashion: Dinner with the Girls</a></strong>
<p>New Spring Fashion Trend - Stripes I was hanging around in Polyvore  &amp; created this spring outfit that would be perfect for dinner with the girls.  The set was actually inspired by an outfit I just wore out for diner with the girls! New Spring Fashion: Perfectly Striped Perfect For Dinner Out with the Girls Striped By DayStriped Denim... <a href='http://www.purenaturaldiva.com/2012/04/new-spring-fashion/'>[Read more of this review]</a></p>
<div class="c5"></div>
<strong><a href="http://www.purenaturaldiva.com/category/organic-pure-natural-living/" rel="bookmark">Read More Posts From This Category</a></strong></div>
</div>
<!-- begin sidebar -->
<div id="sidebar">
<ul id="sidebarwidgeted">
<li id="text-461539656" class="widget widget_text">
<h2 class="widgettitle">Diva Love</h2>
<div class="textwidget c6"><a href="http://www.purenaturaldiva.com/about-2/subscribe-to-pure-natural-diva/"><img src="http://www.purenaturaldiva.com/wp-content/uploads/2011/01/pndemail2.png" alt="** PLEASE DESCRIBE THIS IMAGE **" /></a> <a href="http://facebook.com/purenaturaldiva"><img src="http://www.purenaturaldiva.com/wp-content/uploads/2009/08/facebook.png" alt="** PLEASE DESCRIBE THIS IMAGE **" /></a> <a href="http://pinterest.com/purenaturaldiva/"><img src="http://www.purenaturaldiva.com/wp-content/uploads/2012/02/pinterest_red.png" alt="** PLEASE DESCRIBE THIS IMAGE **" /></a> <a href="http://twitter.com/purenaturaldiva"><img src="http://www.purenaturaldiva.com/wp-content/uploads/2009/08/twitter.png" alt="** PLEASE DESCRIBE THIS IMAGE **" /></a> <a href="http://www.linkedin.com/in/purenaturaldiva"><img src="http://www.purenaturaldiva.com/wp-content/uploads/2009/08/linkedin.png" alt="** PLEASE DESCRIBE THIS IMAGE **" /></a></div>
</li>
<li id="text-461539674" class="widget widget_text">
<h2 class="widgettitle">Categories</h2>
<div class="textwidget"><a href="http://www.purenaturaldiva.com/category/parenting/"><img src="http://www.nwdesignsit.com/designimages/pndfamily.png" alt="** PLEASE DESCRIBE THIS IMAGE **" /></a><span class="c7">Sponsor:</span> <a href="http://www.ewg.org/kid-safe-chemicals-act-blog/kid-safe-chemicals-act/?utm_source=Blog&amp;utm_medium=Badge&amp;utm_campaign=Kid-Safe-Pure-Natural-Diva">Safe Chemicals Act</a> <a href="http://www.purenaturaldiva.com/category/beauty-fashion/better-beauty/"><img src="http://www.nwdesignsit.com/designimages/pndbeauty.png" alt="** PLEASE DESCRIBE THIS IMAGE **" /></a><span class="c7">Sponsor:</span> <a href="http://www.facefactsbylori.com/">Face Facts</a> <a href="http://www.purenaturaldiva.com/category/beauty-fashion/better-beauty/"><img src="http://www.nwdesignsit.com/designimages/pndfitness.png" alt="** PLEASE DESCRIBE THIS IMAGE **" /></a><span class="c7">Sponsor:</span> <a href="http://www.purenaturaldiva.com/media-services/diva-social-media-consulting-services/">PND Media Services</a> <a href="http://www.purenaturaldiva.com/category/food-diet/"><img src="http://www.nwdesignsit.com/designimages/pndfood.png" alt="** PLEASE DESCRIBE THIS IMAGE **" /></a><span class="c7">Sponsor:</span> <a href="http://www.pelleve.com/">Pelleve</a> <a href="http://www.purenaturaldiva.com/category/beauty-fashion/eco-fashion-organic/"><img src="http://www.nwdesignsit.com/designimages/pndfashion.png" alt="** PLEASE DESCRIBE THIS IMAGE **" /></a><span class="c7">Sponsor:</span> <a href="http://us.hessnatur.com/shop/showCmsContent.action?contentID=home">Hessnatur</a> <a href="http://www.purenaturaldiva.com/category/health-wellness/"><img src="http://www.nwdesignsit.com/designimages/pndhealth.png" alt="** PLEASE DESCRIBE THIS IMAGE **" /></a><span class="c7">Sponsorship</span> <a href="http://www.purenaturaldiva.com/media-services/diva-facts-figures-proof/">Available</a> <a href="http://www.purenaturaldiva.com/category/house-garden/"><img src="http://www.nwdesignsit.com/designimages/pndhome.png" alt="** PLEASE DESCRIBE THIS IMAGE **" /></a><span class="c7">Sponsor</span> <a href="http://www.kiva.org/">Kiva</a> <a href="http://www.purenaturaldiva.com/"><img src="http://www.nwdesignsit.com/designimages/pndinthenews.png" alt="** PLEASE DESCRIBE THIS IMAGE **" /></a><span class="c7">Sponsor</span> <a href="http://www.cosmeticsdatabase.com/index.php">Cosmetics Database</a> <a href="http://www.purenaturaldiva.com/"><img src="http://www.nwdesignsit.com/designimages/pndtechnology.png" alt="** PLEASE DESCRIBE THIS IMAGE **" /></a><span class="c7">Sponsorship</span> <a href="http://www.purenaturaldiva.com/media-services/diva-facts-figures-proof/">Available</a> <a href="http://www.purenaturaldiva.com/category/travel/"><img src="http://www.nwdesignsit.com/designimages/pndtravel.png" alt="** PLEASE DESCRIBE THIS IMAGE **" /></a><span class="c7">Sponsor</span> <a href="http://www.fessparker.com/html/inn2.html">Fess Parker Winery</a></div>
</li>
<li id="text-461539678" class="widget widget_text">
<div class="textwidget"><object width="298" height="198"><param name="movie" value="http://d.yimg.com/nl/shine/shine/player.swf" />
<param name="flashVars" value="vid=21390524&amp;" />
<param name="allowfullscreen" value="true" />
<param name="wmode" value="transparent" />
<embed width="576" height="324" allowfullscreen="true" src="http://d.yimg.com/nl/shine/shine/player.swf" type="application/x-shockwave-flash" flashvars="vid=21390524&amp;" /></object></div>
</li>
<li id="text-461539665" class="widget widget_text">
<div class="textwidget"><script type="text/javascript">
//<![CDATA[
<!--
amazon_ad_tag = "wwwpurenatura-20"; amazon_ad_width = "300"; amazon_ad_height = "250"; amazon_ad_link_target = "new"; amazon_ad_border = "hide"; amazon_color_link = "388D14";//-->
//]]>
</script> <script type="text/javascript" src="http://www.assoc-amazon.com/s/ads.js">
</script></div>
</li>
<li id="text-461539676" class="widget widget_text">
<div class="textwidget"><iframe title="YouTube video player" width="298" height="198" src="http://www.youtube.com/embed/O4DKyemG8aA" frameborder="0"></iframe></div>
</li>
</ul>
<!-- begin l_sidebar -->
<div id="l_sidebar">
<ul id="l_sidebarwidgeted">
<li id="text-461539669" class="widget widget_text">
<div class="textwidget c6"><a href="http://www.ewg.org/kid-safe-chemicals-act-blog/kid-safe-chemicals-act/?utm_source=Blog&amp;utm_medium=Badge&amp;utm_campaign=Kid-Safe-Pure-Natural-Diva"><img alt="Kid-safe Chemicals Campaign" src="http://www.ewg.org/files/KSCAbadge.jpg" width="120" height="130" border="0" /></a></div>
</li>
<li id="tag_cloud-4" class="widget widget_tag_cloud">
<h2 class="widgettitle">Tags</h2>
<div class="tagcloud"><a href='http://www.purenaturaldiva.com/tag/baby/' class='tag-link-389 c8' title='6 topics'>baby</a> <a href='http://www.purenaturaldiva.com/tag/beauty/' class='tag-link-513 c9' title='11 topics'>beauty</a> <a href='http://www.purenaturaldiva.com/tag/bpa/' class='tag-link-179 c8' title='6 topics'>BPA</a> <a href='http://www.purenaturaldiva.com/tag/cancer/' class='tag-link-401 c10' title='4 topics'>cancer</a> <a href='http://www.purenaturaldiva.com/tag/children/' class='tag-link-471 c11' title='9 topics'>children</a> <a href='http://www.purenaturaldiva.com/tag/cleaner/' class='tag-link-412 c10' title='4 topics'>cleaner</a> <a href='http://www.purenaturaldiva.com/tag/dangers/' class='tag-link-457 c10' title='4 topics'>Dangers</a> <a href='http://www.purenaturaldiva.com/tag/easy/' class='tag-link-523 c11' title='9 topics'>easy</a> <a href='http://www.purenaturaldiva.com/tag/eco/' class='tag-link-518 c12' title='28 topics'>eco</a> <a href='http://www.purenaturaldiva.com/tag/eco-friendly/' class='tag-link-375 c10' title='4 topics'>Eco Friendly</a> <a href='http://www.purenaturaldiva.com/tag/family/' class='tag-link-838 c8' title='6 topics'>family</a> <a href='http://www.purenaturaldiva.com/tag/flax/' class='tag-link-558 c13' title='8 topics'>flax</a> <a href='http://www.purenaturaldiva.com/tag/food/' class='tag-link-244 c9' title='11 topics'>food</a> <a href='http://www.purenaturaldiva.com/tag/free/' class='tag-link-550 c8' title='6 topics'>free</a> <a href='http://www.purenaturaldiva.com/tag/friendly/' class='tag-link-581 c9' title='11 topics'>friendly</a> <a href='http://www.purenaturaldiva.com/tag/giveaway/' class='tag-link-289 c14' title='12 topics'>Giveaway</a> <a href='http://www.purenaturaldiva.com/tag/grain/' class='tag-link-612 c8' title='6 topics'>Grain</a> <a href='http://www.purenaturaldiva.com/tag/green/' class='tag-link-373 c15' title='39 topics'>Green</a> <a href='http://www.purenaturaldiva.com/tag/healthier/' class='tag-link-555 c16' title='5 topics'>healthier</a> <a href='http://www.purenaturaldiva.com/tag/healthy/' class='tag-link-599 c9' title='11 topics'>healthy</a> <a href='http://www.purenaturaldiva.com/tag/hypnobirthing/' class='tag-link-232 c16' title='5 topics'>Hypnobirthing</a> <a href='http://www.purenaturaldiva.com/tag/make/' class='tag-link-521 c17' title='10 topics'>make</a> <a href='http://www.purenaturaldiva.com/tag/make-up/' class='tag-link-349 c10' title='4 topics'>make up</a> <a href='http://www.purenaturaldiva.com/tag/money/' class='tag-link-386 c16' title='5 topics'>money</a> <a href='http://www.purenaturaldiva.com/tag/natural/' class='tag-link-295 c18' title='32 topics'>Natural</a> <a href='http://www.purenaturaldiva.com/tag/new/' class='tag-link-726 c16' title='5 topics'>new</a> <a href='http://www.purenaturaldiva.com/tag/non/' class='tag-link-618 c11' title='9 topics'>non</a> <a href='http://www.purenaturaldiva.com/tag/non-toxic/' class='tag-link-410 c8' title='6 topics'>non-toxic</a> <a href='http://www.purenaturaldiva.com/tag/organic/' class='tag-link-132 c19' title='36 topics'>Organic</a> <a href='http://www.purenaturaldiva.com/tag/own/' class='tag-link-616 c20' title='7 topics'>own</a> <a href='http://www.purenaturaldiva.com/tag/plastic/' class='tag-link-247 c16' title='5 topics'>plastic</a> <a href='http://www.purenaturaldiva.com/tag/pure/' class='tag-link-628 c16' title='5 topics'>pure</a> <a href='http://www.purenaturaldiva.com/tag/organic-pure-natural-living/' class='tag-link-663 c8' title='6 topics'>Pure Natural Living</a> <a href='http://www.purenaturaldiva.com/tag/recipe/' class='tag-link-230 c21' title='22 topics'>Recipe</a> <a href='http://www.purenaturaldiva.com/tag/review/' class='tag-link-164 c22' title='34 topics'>review</a> <a href='http://www.purenaturaldiva.com/tag/safe/' class='tag-link-392 c23' title='14 topics'>safe</a> <a href='http://www.purenaturaldiva.com/tag/safety/' class='tag-link-245 c20' title='7 topics'>safety</a> <a href='http://www.purenaturaldiva.com/tag/save/' class='tag-link-385 c8' title='6 topics'>save</a> <a href='http://www.purenaturaldiva.com/tag/tips/' class='tag-link-460 c13' title='8 topics'>Tips</a> <a href='http://www.purenaturaldiva.com/tag/top/' class='tag-link-608 c16' title='5 topics'>top</a> <a href='http://www.purenaturaldiva.com/tag/toxic/' class='tag-link-478 c14' title='12 topics'>toxic</a> <a href='http://www.purenaturaldiva.com/tag/vegetables/' class='tag-link-524 c13' title='8 topics'>vegetables</a> <a href='http://www.purenaturaldiva.com/tag/water/' class='tag-link-387 c8' title='6 topics'>water</a> <a href='http://www.purenaturaldiva.com/tag/whole/' class='tag-link-611 c20' title='7 topics'>Whole</a> <a href='http://www.purenaturaldiva.com/tag/your/' class='tag-link-615 c8' title='6 topics'>your</a></div>
</li>
<li id="text-461539672" class="widget widget_text">
<div class="textwidget c6"><a href="http://www.mamavation.com/2010/10/top-50-most-inspirational-healthy-tweeps.html" title="Mamavation"><img src="http://i688.photobucket.com/albums/vv248/bookieboo78/top30.png" alt="Mamavation" class="c24" /></a></div>
</li>
<li id="text-461539668" class="widget widget_text">
<div class="textwidget"><a href="http://www.onlinenursingprograms.net/top_organic/"><img src="http://www.onlinenursingprograms.net/top_organic/images/Badges/circlebadge1.png" alt="Top Organic Blog" border="0" /></a><br /></div>
</li>
<li id="archives-2" class="widget widget_archive">
<h2 class="widgettitle c25">Archives</h2>
<span class="c26"><select name="archive-dropdown" onchange='document.location.href=this.options[this.selectedIndex].value;'>
<option value="">Select Month</option>
<option value='http://www.purenaturaldiva.com/2012/05/'>May 2012</option>
<option value='http://www.purenaturaldiva.com/2012/04/'>April 2012</option>
<option value='http://www.purenaturaldiva.com/2012/03/'>March 2012</option>
<option value='http://www.purenaturaldiva.com/2012/02/'>February 2012</option>
<option value='http://www.purenaturaldiva.com/2012/01/'>January 2012</option>
<option value='http://www.purenaturaldiva.com/2011/12/'>December 2011</option>
<option value='http://www.purenaturaldiva.com/2011/11/'>November 2011</option>
<option value='http://www.purenaturaldiva.com/2011/10/'>October 2011</option>
<option value='http://www.purenaturaldiva.com/2011/09/'>September 2011</option>
<option value='http://www.purenaturaldiva.com/2011/08/'>August 2011</option>
<option value='http://www.purenaturaldiva.com/2011/07/'>July 2011</option>
<option value='http://www.purenaturaldiva.com/2011/06/'>June 2011</option>
<option value='http://www.purenaturaldiva.com/2011/05/'>May 2011</option>
<option value='http://www.purenaturaldiva.com/2011/04/'>April 2011</option>
<option value='http://www.purenaturaldiva.com/2011/03/'>March 2011</option>
<option value='http://www.purenaturaldiva.com/2011/02/'>February 2011</option>
<option value='http://www.purenaturaldiva.com/2011/01/'>January 2011</option>
<option value='http://www.purenaturaldiva.com/2010/12/'>December 2010</option>
<option value='http://www.purenaturaldiva.com/2010/11/'>November 2010</option>
<option value='http://www.purenaturaldiva.com/2010/10/'>October 2010</option>
<option value='http://www.purenaturaldiva.com/2010/09/'>September 2010</option>
<option value='http://www.purenaturaldiva.com/2010/08/'>August 2010</option>
<option value='http://www.purenaturaldiva.com/2010/07/'>July 2010</option>
<option value='http://www.purenaturaldiva.com/2010/06/'>June 2010</option>
<option value='http://www.purenaturaldiva.com/2010/05/'>May 2010</option>
<option value='http://www.purenaturaldiva.com/2010/04/'>April 2010</option>
<option value='http://www.purenaturaldiva.com/2010/03/'>March 2010</option>
<option value='http://www.purenaturaldiva.com/2010/02/'>February 2010</option>
<option value='http://www.purenaturaldiva.com/2010/01/'>January 2010</option>
<option value='http://www.purenaturaldiva.com/2009/12/'>December 2009</option>
<option value='http://www.purenaturaldiva.com/2009/11/'>November 2009</option>
<option value='http://www.purenaturaldiva.com/2009/10/'>October 2009</option>
<option value='http://www.purenaturaldiva.com/2009/09/'>September 2009</option>
<option value='http://www.purenaturaldiva.com/2009/08/'>August 2009</option>
<option value='http://www.purenaturaldiva.com/2009/07/'>July 2009</option>
<option value='http://www.purenaturaldiva.com/2009/06/'>June 2009</option>
<option value='http://www.purenaturaldiva.com/2009/05/'>May 2009</option>
<option value='http://www.purenaturaldiva.com/2009/04/'>April 2009</option>
</select></span></li>
<li id="text-461539652" class="widget widget_text">
<div class="textwidget c27"><a href='http://www.myfreecopyright.com/registered_mcn/B880C_55662_A0074' title='MyFreeCopyright.com Registered &amp; Protected'><img src='http://storage.myfreecopyright.com/mfc_protected.png' alt='MyFreeCopyright.com Registered &amp; Protected' title='MyFreeCopyright.com Registered &amp; Protected' width='145px' height='38px' border='0' /></a></div>
</li>
<li id="text-461539675" class="widget widget_text">
<div class="textwidget"></div>
</li>
<li id="twitter-3" class="widget widget_twitter">
<h2 class="widgettitle c25"><a href='http://twitter.com/purenaturaldiva'>TWEETING LIVE</a></h2>
<ul class="tweets">
<li><span class="c26">I was about to wish everyone a happy Monday - then I realized it was Tuesday! <a href="http://twitter.com/purenaturaldiva/statuses/207493360309645312" class="timesince">2 hours ago</a></span></li>
<li><span class="c26">These are the pictures my son asks me to take! <a href="http://t.co/bT2bEdlT" rel="nofollow">http://t.co/bT2bEdlT</a> <a href="http://twitter.com/purenaturaldiva/statuses/207489138474233858" class="timesince">2 hours ago</a></span></li>
<li><span class="c26">My first attempt at making eggs! <a href="http://t.co/hXUcmeTk" rel="nofollow">http://t.co/hXUcmeTk</a> <a href="http://twitter.com/purenaturaldiva/statuses/207209432587841537" class="timesince">21 hours ago</a></span></li>
<li><span class="c26">Posts from Pure Natural Diva for 05/28/2012 - <a href="http://t.co/uWT4RcZB" rel="nofollow">http://t.co/uWT4RcZB</a> <a href="http://twitter.com/purenaturaldiva/statuses/207079191936643072" class="timesince">1 day ago</a></span></li>
</ul>
</li>
</ul>
</div>
<!-- end l_sidebar --><!-- begin r_sidebar -->
<div id="r_sidebar">
<ul id="r_sidebarwidgeted">
<li id="text-461539660" class="widget widget_text">
<div class="textwidget c27"><a href="http://www.uptake.com/" title="UpTake thinks I'm a Gem"><img src="http://uptake-assets.s3.amazonaws.com/images/badges/travelgems/tgem_125_b_3.gif" alt="UpTake thinks I'm a Gem" /></a></div>
</li>
<li id="text-461539679" class="widget widget_text">
<div class="textwidget c28"><script type="text/javascript" src="http://www.hostmonster.com/src/js/purenaturaldiva/CODE70/120x120/hm_120x120_01.gif">
</script></div>
</li>
<li id="text-461539654" class="widget widget_text">
<div class="textwidget">
<div id='networkedblogs_nwidget_container' class='c35'>
<div id='networkedblogs_nwidget_above'></div>
<div id='networkedblogs_nwidget_widget' class="c34">
<div id="networkedblogs_nwidget_logo" class="c30"><a href="http://networkedblogs.com/" target="_blank" title="NetworkedBlogs"><img class="c29" src="http://static.networkedblogs.com/static/images/logo_small.png" title="NetworkedBlogs" alt="** PLEASE DESCRIBE THIS IMAGE **" /></a></div>
<div id="networkedblogs_nwidget_body" class="c31"></div>
<div id="networkedblogs_nwidget_follow" class="c33"><a class="c32" href="http://networkedblogs.com/blog/pure_natural_diva/?ahash=7e70731f2b21c146b93c598a4ee9500c">Follow this blog</a></div>
</div>
<div id='networkedblogs_nwidget_below'></div>
</div>
<span class="c26"><script type="text/javascript">
//<![CDATA[
<!--
if(typeof(networkedblogs)=="undefined"){networkedblogs = {};networkedblogs.blogId=203225;networkedblogs.shortName="pure_natural_diva";}
-->
//]]>
</script><script src="http://nwidget.networkedblogs.com/getnetworkwidget?bid=203225" type="text/javascript">
</script> </span></div>
</li>
</ul>
</div>
</div>
</div>
</div>
</body>
</html>

↑ Top