<!-- begin code provided by createblog.com -->
<script language=javascript>
var rate = 100; // Increase amount(The degree of the transmutation)
var obj; // The object which event occured in
var act = 0; // Flag during the action
var elmH = 0; // Hue
var elmS = 128; // Saturation
var elmV = 255; // Value
var clrOrg; // A color before the change
var TimerID; // Timer ID
si=setInterval;
if (navigator.appName.indexOf("Microsoft",0) != -1 && parseInt(navigator.appVersion) >= 4) {
Browser = true;
} else {
Browser = false;
}
if (Browser) {
document.onmouseover = doRainbowAnchor;
document.onmouseout = stopRainbowAnchor;
}
function doRainbow()
{
if (Browser && act != 1) {
act = 1;
obj = event.srcElement;
clrOrg = obj.style.color;
TimerID = si("ChangeColor()",100);
}
}
function stopRainbow()
{
if (Browser && act != 0) {
obj.style.color = clrOrg;
clearInterval(TimerID);
act = 0;
}
}
function doRainbowAnchor()
{
if (Browser && act != 1) {
obj = event.srcElement;
while (obj.tagName != 'A' && obj.tagName != 'BODY') {
obj = obj.parentElement;
if (obj.tagName == 'A' || obj.tagName == 'BODY')
break;
}
if (obj.tagName == 'A' && obj.href != '') {
act = 1;
clrOrg = obj.style.color;
TimerID = si("ChangeColor()",100);
}
}
}
//document.write.blogring
function stopRainbowAnchor()
{
if (Browser && act != 0) {
if (obj.tagName == 'A') {
obj.style.color = clrOrg;
clearInterval(TimerID);
act = 0;
}
}
}
function ChangeColor()
{
obj.style.color = makeColor();
}
function makeColor()
{
// HSVtoRGB
if (elmS == 0) {
elmR = elmV; elmG = elmV; elmB = elmV;
}
else {
t1 = elmV;
t2 = (255 - elmS) * elmV / 255;
t3 = elmH % 60;
t3 = (t1 - t2) * t3 / 60;
if (elmH < 60) {
elmR = t1; elmB = t2; elmG = t2 + t3;
}
else if (elmH < 120) {
elmG = t1; elmB = t2; elmR = t1 - t3;
}
else if (elmH < 180) {
elmG = t1; elmR = t2; elmB = t2 + t3;
}
else if (elmH < 240) {
elmB = t1; elmR = t2; elmG = t1 - t3;
}
else if (elmH < 300) {
elmB = t1; elmG = t2; elmR = t2 + t3;
}
else if (elmH < 360) {
elmR = t1; elmG = t2; elmB = t1 - t3;
}
else {
elmR = 0; elmG = 0; elmB = 0;
}
}
//document.write.blogring
elmR = Math.floor(elmR);
elmG = Math.floor(elmG);
elmB = Math.floor(elmB);
clrRGB = '#' + elmR.toString(16) + elmG.toString(16) + elmB.toString(16);
elmH = elmH + rate;
if (elmH >= 360)
elmH = 0;
return clrRGB;
}
</script>
<!-- end code provided by createblog.com -->
<center>
<a href="http://xanga.com/aesthetic_layouts">© aesthetic</a>
<style type="text/css">
body {
background-color: #343434;
background-image:url(http://img.photobucket.com/albums/v294/xkiwilicious/parisback.gif);
background-position: center;
background-repeat: repeat;
background-attachment: fixed;
border:none;
scrollbar-arrow-color: #DDFFFF;
scrollbar-shadow-color: #008080;
scrollbar-face-color: #505050;
scrollbar-track-color: #343434;
scrollbar-highlight-color: #DDFFFF;
scrollbar-darkshadow-color: #008080;
scrollbar-3dlight-color: #DDFFFF;
}
.left, .blogbody, table.footer, .standard, .leftmodulefontcolor, td, p
{
/* edits main text */
font:bold 14px arial;
line-height:10px;
color:#343434;
letter-spacing:0px;
text-align:left;
}
.blogbody b, .standard b, p b, strong {
/* edits bolded text in your entry */
font:bold 14px arial;
color: #343434;
text-transform:uppercase;
}
.blogbody u, .standard u, p u, u {
font-weight: underline;
color: #343434;
border-bottom: 2px dotted #008080;
}
table.footer TD {
/* this makes the footer at the bottom centered */
/* leave it alone unless you know what to do*/
text-align: center;
}
div.blogheader, .caption {
/* edits the dates */
font-family: times new roman;
font-size:20px;
text-transform: uppercase;
line-height:25px;
letter-spacing: -3px;
font-weight:none;
color:#DDFFFF;
background-color: transparent;
width: 293px;
border:none;
text-align:center;
}
a:link, .footernav.link, a.footernav:link, a.footernav:active {
color:#008080;
background-color:DDFFFF;
border:1px solid #505050;
font-family: terminal;
text-transform:none;
letter-spacing:-1px;
font-size: 10px;
line-height: 10px;
font-weight: none;
text-decoration: none;
}
a:visited, a.footernav:visited, {
color:#008080;
background-color:DDFFFF;
border:1px solid #505050;
font-family: terminal;
text-transform:none;
letter-spacing:-1px;
font-size: 10px;
line-height: 10px;
font-weight: none;
text-decoration: none;
}
a:hover, a:active {
color:#505050;
background-color:none;
font-family: terminal;
text-transform:none;
letter-spacing:-1px;
font-size: 10px;
line-height: 10px;
font-weight: none;
text-decoration: none;
}
input, select, textarea, .textfield, .button {
/* this edits the buttons, dropdowns, etc. */
border: 1px solid #343434;
font:bold 14px arial;
background-image:url(http://img.photobucket.com/albums/v294/xkiwilicious/tealhearts.bmp);
color: #343434;
}
table.left {
/* this edits the menu module */
width:150px;
border: none;
background-color:transparent;
}
table.blogbody {
/* this edits the other the place where the blog is */
border:none;
width:293px;
background-color: #DDFFFF;
background-image:url(http://img.photobucket.com/albums/v294/xkiwilicious/tealhearts.bmp);
background-repeat:repeat;
background-position:top left;
background-attachment:fixed;
}
table.left th {
/* on your menu module, this edits the title part of it */
/* like BLOGRINGS, POSTING CALENDAR, etc */
font: normal 14px times new roman;
text-transform: uppercase;
line-height:22px;
background-color: transparent;
color: #DDFFFF;
text-align: center;
letter-spacing: -2px;
border: none;
}
table.left TD {
/* on your menu module, this edits the body part of it */
background-color:#DDFFFF;
background-image:url(http://img.photobucket.com/albums/v294/xkiwilicious/tealhearts.bmp);
background-repeat:repeat;
background-position:top left;
background-attachment:fixed;
font: bold 14px arial;
color: #343434;
text-align:left;
border:none;
}
table.search TD, table.search, table.announcements {
/* border of search bar (if you have it) */
background-color: #DDFFFF;
background-image:url(http://img.photobucket.com/albums/v294/xkiwilicious/tealhearts.bmp);
background-repeat:repeat;
background-position:top left;
background-attachment:fixed;
border: none;
width:293px;
}
table.search TD, table.announcements TH {
/* this should be left alone */
/* unless you know what to do */
border: 0px solid #000000;
}
table.navigation, table.main, table.footer {
/* the width of your blog with modules */
width: 500px;
}
hr {
/* horizontal divider */
border: 1px solid #DDFFFF;
}
</style>