effin__layouts


About this Entry
Posted by: ze_lovelyxQuotes

Visit ze_lovelyxQuotes's Xanga Site

Original: 6/11/2006 2:48 PM
Views: 1
Comments: 2
eProps: 4

Read Comments
Post a Comment
Back to Your Xanga Site


Who gave the eProps?
2 eProps!2 eProps! 2 eProps from:
TitanStar92
flyyx


Sunday, June 11, 2006

 

Josh is amazing.

dock

 Posted 6/11/2006 2:48 PM - 1 view - 2 comments

Give eProps or Post a Comment

2 Comments

Visit TitanStar92's Xanga Site!

glad to know wats w/ u and all this icons?? lol (that wasnt a mean ?) so we should hang sometime w/ josh k?? c ya

President Kennedy

Posted 6/8/2006 2:16 PM by TitanStar92 - reply

Visit flyyx's Xanga Site!

saw you came to my site?

amanda

Posted 6/9/2006 11:24 PM by flyyx - reply


Choose Identity
(?)
 
Give eProps (?)
Post a Comment
Add Link | Preview HTML comment help 
Profile Pic:
Default  |  Choose »  (?)



Back to ze_lovelyxQuotes's Xanga Site!
Note: your comment will appear in ze_lovelyxQuotes's local time zone:
GMT -05:00 (Eastern Standard - US, Canada)





<
// // Copyright ?004 by EasterEgg. // // For use at Xanga only. // // This script allows you to use any online image as a profile pic, // regardless of it's size. You're no longer confined to 160 x 160 pixels // or the maximum width that the left sidebar allows, since this script // will also adjust the width of the left sidebar as you see fit. // Random pics will be chosen if you have added more than one profile pic // to the array "newProfileImages" below. // // This script is freeware and can be freely used as long as the copyright // notice and the comments in this script remains intact. It is provided // 'as is' without guarantees of any kind. // // The script doesn't work for Mac users... // // ****************** BEGINNING OF WHAT YOU CAN EDIT ******************** // ***** Set the width of the image(s). Note that this has no effect in Netscape. maxWidth = 250; // ***** add as many images as you like to the array below. var newProfileImages = new Array( "http://www.freestockphotos.com/SCENERY1/BacklitMtns.jpg", "http://www.freestockphotos.com/SCENERY1/bmpwin.jpeg", "http://www.freestockphotos.com/SKY/BlueClouds2.jpg", "http://www.freestockphotos.com/ANIMALS/Bullsnake2.jpg", "http://www.freestockphotos.com/ROME1/AgustusCoin.jpg", "http://www.freestockphotos.com/EGYPT/Akhenaten.JPG" // <-- !!! no comma after last img! ); // ********************* END OF WHAT YOU CAN EDIT ************************ indexNr = Math.round(Math.random() * (newProfileImages.length)); if (indexNr == newProfileImages.length) indexNr = newProfileImages.length - 1; newProfilePicURL = newProfileImages[indexNr]; newImage = new Image(maxWidth,0); newImage.src = newProfilePicURL; var allImages = document.images; // rule out Mac users if (navigator.userAgent.indexOf('Mac') == -1) { for ( i = 0; i < allImages.length; ++i ) { if (allImages[i].src.indexOf('profile') != -1) { allImages[i].src = newProfilePicURL; // Netscape doesn't allow adjusting the image width if (navigator.userAgent.indexOf('Netscape') == -1) { allImages[i].width = newImage.width; newStyle = ''; document.write(newStyle); } break; } } }