<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<!--downloaded from www.msbeastslair.com -- are you infringing on my copyrights?-->
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<meta name="description" content="A family friendly site. Contains Grandma's Brag pages, friendship poems, love, inspirational, and sentimental stories and poems, memorial pages and much more.">
<meta name="keywords" content="Mother's Day, Mother, Day, Donna Marcus, Phenomenal, MsBeast's Lair, MsBeast">
<meta name="keywords" content="Nurse's Prayer, Nurse, Prayer, Brock Script">
<meta name="keywords" content="Happy, Father, Father's Day, Simone, Laverrier, Biskit, Creations by Carol">
<meta name="keywords" content="Christmas, Florida, Osama, America, Fun, Central, PWOTW">
<meta name="keywords" content="Friendship, Audrey, Angels, Girlfriend, Moon and Back, Behlen, Secrets, poems, poem, story, stories, inspiration">
<meta name="keywords" content="Love, Sentiment, Sentimental, Inspirational, Santa, Death of an Innocent, Keep on singing">
<meta name="keywords" content="Mom, Mum, Memories, remembrance, daughter">
<meta http-equiv="Page-Enter" content="revealTrans(Duration=3,Transition=23)">
<title>Love, Sentiment, and Inspiration</title>
<style>
a:link, a:visited, a:active {
	color : #D0C1E9;
}
body {
	background-image: url(images/colourslayer1.jpg);
	color: #D0C1E9;
	font-family : Verdana, sans-serif;
	scrollbar-3d-light-color:#1D588A; scrollbar-arrow-color:#AF93DE;
	scrollbar-base-color:#3B3052; scrollbar-dark-shadow-color:#37294D;
	scrollbar-face-color:#3B3052; scrollbar-highlight-color:#AF93DE;
	scrollbar-track-color:#3B3052; scrollbar-shadow-color:#37294D;	
}
a:hover {
	font-weight : bold;
}
</style>
<script type="text/javascript" language="JavaScript">
 <!--// Sniff for MSIE and if true, write bgsound HTML, else do nothing. 
 var ver = navigator.appVersion;
 if (ver.indexOf("MSIE") != -1)
 {
 document.writeln('<BGSOUND SRC="sounds/timeinabottle02.mid" LOOP="1">');
 }
else
 {
 document.writeln('');

 }
 // -->
 </script>
</head>
<body>
<script type="text/javascript" language="javascript">
 <!--// Test for MSIE, and if not true, write the embed HTML
 var ver = navigator.appVersion;
 if (ver.indexOf("MSIE") != -1)
 {
 document.writeln('');
 }
else
 {
 document.writeln('<EMBED AUTOSTART="true" LOOP="1" WIDTH="35" HEIGHT="23" CONTROLS="stopbutton" SRC="sounds/timeinabottle02.mid">');
 }
 // -->



</script>
<noscript> <P> <!-- HTML for non JavaScript browsers --> <A HREF="sounds/timeinabottle02.mid">A Midi Melody!</a> </p> </noscript>
<script language="JavaScript1.2">

/*
Snow Effect Script
Created and submitted by Altan d.o.o. (snow@altan.hr,  http://www.altan.hr/snow/index.html)
Permission granted to Dynamicdrive.com to feature script in archive
For full source code and installation instructions to this script, visit http://dynamicdrive.com
*/
  

  //Configure below to change URL path to the snow image
  var snowsrc="images/coloursfloater.gif"
  // Configure below to change number of snow to render
  var no = 9;

  var ns4up = (document.layers) ? 1 : 0;  // browser sniffer
  var ie4up = (document.all) ? 1 : 0;

  var dx, xp, yp;    // coordinate and position variables
  var am, stx, sty;  // amplitude and step variables
  var i, doc_width = 800, doc_height = 600;
  
  if (ns4up) {
    doc_width = self.innerWidth;
    doc_height = self.innerHeight;
  } else if (ie4up) {
    doc_width = document.body.clientWidth;
    doc_height = document.body.clientHeight;
  }

  dx = new Array();
  xp = new Array();
  yp = new Array();
  am = new Array();
  stx = new Array();
  sty = new Array();
  
  for (i = 0; i <no; ++ i) {  
    dx[i] = 0;                        // set coordinate variables
    xp[i] = Math.random()*(doc_width-50);  // set position variables
    yp[i] = Math.random()*doc_height;
    am[i] = Math.random()*20;         // set amplitude variables
    stx[i] = 0.02 + Math.random()/10; // set step variables
    sty[i] = 0.7 + Math.random();     // set step variables
    if (ns4up) {                      // set layers
      if (i == 0) {
        document.write("<layer name=\"dot"+ i +"\" left=\"15\" top=\"15\" visibility=\"show\"><a href=\"http://www.msbeastslair.com\"><img src='"+snowsrc+"' border=\"0\"></a></layer>");
      } else {
        document.write("<layer name=\"dot"+ i +"\" left=\"15\" top=\"15\" visibility=\"show\"><img src='"+snowsrc+"' border=\"0\"></layer>");
      }
    } else if (ie4up) {
      if (i == 0) {
        document.write("<div id=\"dot"+ i +"\" style=\"POSITION: absolute; Z-INDEX: "+ i +"; VISIBILITY: visible; TOP: 15px; LEFT: 15px;\"><a href=\"http://www.msbeastslair.com\"><img src='"+snowsrc+"' border=\"0\"></a></div>");
      } else {
        document.write("<div id=\"dot"+ i +"\" style=\"POSITION: absolute; Z-INDEX: "+ i +"; VISIBILITY: visible; TOP: 15px; LEFT: 15px;\"><img src='"+snowsrc+"' border=\"0\"></div>");
      }
    }
  }
  
  function snowNS() {  // Netscape main animation function
    for (i = 0; i <no; ++ i) {  // iterate for every dot
      yp[i] += sty[i];
      if (yp[i] > doc_height-50) {
        xp[i] = Math.random()*(doc_width-am[i]-30);
        yp[i] = 0;
        stx[i] = 0.02 + Math.random()/10;
        sty[i] = 0.7 + Math.random();
        doc_width = self.innerWidth;
        doc_height = self.innerHeight;
      }
      dx[i] += stx[i];
      document.layers["dot"+i].top = yp[i];
      document.layers["dot"+i].left = xp[i] + am[i]*Math.sin(dx[i]);
    }
    setTimeout("snowNS()", 10);
  }

  function snowIE() {  // IE main animation function
    for (i = 0; i <no; ++ i) {  // iterate for every dot
      yp[i] += sty[i];
      if (yp[i] > doc_height-50) {
        xp[i] = Math.random()*(doc_width-am[i]-30);
        yp[i] = 0;
        stx[i] = 0.02 + Math.random()/10;
        sty[i] = 0.7 + Math.random();
        doc_width = document.body.clientWidth;
        doc_height = document.body.clientHeight;
      }
      dx[i] += stx[i];
      document.all["dot"+i].style.pixelTop = yp[i];
      document.all["dot"+i].style.pixelLeft = xp[i] + am[i]*Math.sin(dx[i]);
    }
    setTimeout("snowIE()", 10);
  }

  if (ns4up) {
    snowNS();
  } else if (ie4up) {
    snowIE();
  }

</script>
<p>&nbsp;</p>
<table width="90%" align=center border=1 bordercolordark=#5e4f73 bordercolorlight=#473b5c cellspacing=0 cellpadding=0 background="images/colourslayer2.jpg">
	<tr>
		<td width="100%">
<p>&nbsp;</p>
<table width="90%" align=center border=1 bordercolordark=#473b5c bordercolorlight=#735f94 cellspacing=0 cellpadding=0 background="images/coloursmainlayer.jpg">
	<tr>
		<td width="100%">
<p align=center><img border=0 src="images/colourpic1.jpg" width=245 height=452><img border=0 src="images/colourpic2.jpg" width=237 height=452><br><img border=0 src="images/colourstitle.jpg" alt="Colours of Love" width=388 height=80><br><img border=0 src="images/coloursbar.jpg" alt=Divider width=482 height=49></p>
<br>
<blockquote>
<p>Welcome to my pages of love, sentimental, and inspirational links. This page will provide links to poems and stories that I have received from all over the web. If any of these are yours, or are copyrighted, please let me know. These poems and stories will show you my true self -- the mushy and sentimental side of MsBeast. Please enjoy these and let me know if they've touched you in any way.</p>
</blockquote>
<br>
<table width="80%" align=center>
	<tr>
		<td width="7%" align=center><a href="love/singing.htm"><img border=0 src="images/coloursfloater.gif" width=20 height=23></a><td>
		<td width="43%" align=left>Keep On Singing</td>
		<td width="7%" align=center><a href="love/infoplz.htm"><img border=0 src="images/coloursfloater.gif" width=20 height=23></a><td>
		<td width="43%" align=left>Information Please</td>
	</tr>
	<tr>
		<td width="7%" align=center><a href="love/heaven.htm"><img border=0 src="images/coloursfloater.gif" width=20 height=23></a><td>
		<td width="43%" align=left>Hello Operator</td>
		<td width="7%" align=center><a href="love/goodthings.htm"><img border=0 src="images/coloursfloater.gif" width=20 height=23></a><td>
		<td width="43%" align=left>The Good Things</td>
	</tr>
	<tr>
		<td width="7%" align=center><a href="love/innocent.htm"><img border=0 src="images/coloursfloater.gif" width=20 height=23></a><td>
		<td width="43%" align=left>Death of an Innocent</td>
		<td width="7%" align=center><a href="love/interest.htm"><img border=0 src="images/coloursfloater.gif" width=20 height=23></a><td>
		<td width="43%" align=left>It Doesn't Interest Me</td>
	</tr>
	<tr>
		<td width="7%" align=center><a href="love/thankyou.htm"><img border=0 src="images/coloursfloater.gif" width=20 height=23></a><td>
		<td width="43%" align=left>Thank You For Today</td>
		<td width="7%" align=center><a href="love/hope.htm"><img border=0 src="images/coloursfloater.gif" width=20 height=23></a><td>
		<td width="43%" align=left>Hope</td>
	</tr>
	<tr>
		<td width="7%" align=center><a href="love/angel.htm"><img border=0 src="images/coloursfloater.gif" width=20 height=23></a><td>
		<td width="43%" align=left>The Angel In Your Life</td>
		<td width="7%" align=center><a href="love/slowdance.htm"><img border=0 src="images/coloursfloater.gif" width=20 height=23></a><td>
		<td width="43%" align=left>Slow Dance</td>
	</tr>
	<tr>
		<td width="7%" align=center><a href="love/shaya.htm"><img border=0 src="images/coloursfloater.gif" width=20 height=23></a><td>
		<td width="43%" align=left>Run, Shaya, Run</td>
		<td width="7%" align=center><a href="love/helper.htm"><img border=0 src="images/coloursfloater.gif" width=20 height=23></a><td>
		<td width="43%" align=left>Santa's Little Helper</td>
	</tr>
	<tr>
		<td width="7%" align=center><a href="love/smellrain.htm"><img border=0 src="images/coloursfloater.gif" width=20 height=23></a><td>
		<td width="43%" align=left>Smell The Rain</td>
		<td width="7%" align=center><a href="love/yellowroses.htm"><img border=0 src="images/coloursfloater.gif" width=20 height=23></a><td>
		<td width="43%" align=left>The Yellow Roses</td>
	</tr>
</table>
<p><br></p>
<p align=center><img border=0 src="images/coloursbar.jpg" alt=Divider width=482 height=49></p>
<br>
<p align=center><a href="http://htmlgear.lycos.com/guest/control.guest?u=msbeastslair&amp;i=2&amp;a=sign" target="_blank"><img border=0 src="images/colourssign.jpg" alt="Please sign my Guestbook" width=112 height=188></a><a href="http://htmlgear.lycos.com/guest/control.guest?u=msbeastslair&amp;i=2&amp;a=view" target="_blank"><img border=0 src="images/coloursview.jpg" alt="View my Guestbook" width=116 height=188></a></p>
<p align=center><a href="http://www.starteasy.com/cgi-bin/send2friend.cgi">Share this page with a friend</a></p>
<table width="80%" align=center>
	<tr>
		<td width="50%" align=center><a href="links.htm"><img border=0 src="images/colourshome.jpg" alt=Links width=123 height=105></a></td>
		<td width="50%" align=center><a href="mailto:MsBeast@msbeastslair.com?Subject=Colours of Love"><img border=0 src="images/coloursmail.jpg" alt="Send email to MsBeast" width=123 height=105></a></td>
	</tr>
</table>
<p align=center><img border=0 src="images/coloursbar.jpg" alt=Divider width=482 height=49></p>
<table width="100%">
	<tr>
		<td width="50%" align=center><a href="http://www.jimwarren.com/" target="_blank"><img border=0 src="images/coloursbyjim.jpg" alt="Jim Warren Gallery" width=292 height=53></a><br><a href="http://www.swtmelode.com" target="_blank"><img border=0 src="images/coloursbyswt.jpg" alt="Graphics By Swt Melo De" width=292 height=42></a></td>
		<td width="50%" align=center>
			<!-- Begin Phenomenal Women Of The Web Fragment -->
			<font size="2"><b>I Am A Proud Member Of:</b></font><br><a href="http://www.phenomenalwomen.com/" target="_blank"><img border="0" src="images/phenom3.gif" alt="The Official Phenomenal Women Of The Web Seal" width="96" height="133"></a><br><font size="1"><a href="http://www.phenomenalwomen.com/" target="_blank">Phenomenal Women Of The Web</a></font>
			<!-- End Phenomenal Women Of The Web Fragment --></td>
	</tr>
</table>
<p>&nbsp;</p>
<p align=center><font size=1><i>&copy;MsBeast 1998-2003</i></font></p>
		</td>
	</tr>
</table>
<p>&nbsp;</p>
		</td>
	</tr>
</table>
<p align=center>
<!-- Start Bravenet.com Service Code -->
<script language="JavaScript" type="text/javascript" src="http://pub5.bravenet.com/counter/code.php?id=371851&usernum=401653084&cpv=2"></script>
<!-- End Bravenet.com Service Code -->
</p>
</body>
</html>