|
SubscriptionsSites I Read
|
|
ata_13
|
|
| www.xanga.com/hachiesnare2010 | | |
| New Xanga-will post link later. | | |
| Aaron Harris, Texas Longhorn linebacker, came to my school to eat lunch with his nephew! I nearly got his autograph, but oh well...
Angie...no longer together. IM me if ya wanna know.
WE NEED SOME FREAKIN RAIN!!!!!!!!!!!!!
HOOK 'EM HORNS!!!
My background pic is the tower in Austin, lit up with the #1!!!! | | |
| With Vince Young leaving the Texas Longhorns, my interest has turned to the Florida State Seminoles. I believe they will be in the top 5 next year. Maybe even in the National Championship. I've always been a fan, and it looks like it's their year. I wrote an article all about my reasons for this prediction.
FLORIDA STATE SEMINOLES END SEASON WITH A SHOCKER! The Florida State Seminoles, rated number 22 at the time, nearly defeated the 3rd ranked Penn State Nittany Lions, but fell short in triple overtime by a field goal. The Seminoles proved that they were dramatically under-rated. They did well, their defense left with a blaze of glorious rage. FSU's ability to bring up the big last-minute plays and young players will make them a team to watch next year. Vince Young has left Texas, along with Matt Leinart from South Cal, both going pro. Reggie Bush, also from USC, will most likely follow the same path. Well, that takes out the top two. Our #3 Penn State friends? They will also be graduating seniors and seeing friends go Pro. Watch out...the Seminoles are back!
Don't get me wrong...I am still a Texas Longhorn fan! 2005-06 National Champions! | | |
| A recent event has inspired me to continue blogging here at Xanga. Can anyone guess what it is?
I deleted my subscriptions on accident...oops...try to comment so I can get most of them back... | | |
|
|
Music
|
|
Song Title - Band
Song Title - Band
Song Title - Band
Song Title - Band
Song Title - Band
Song Title - Band
Song Title - Band
Song Title - Band
Song Title - Band
Song Title - Band
Song Title - Band
Song Title - Band
Song Title - Band
Song Title - Band
Song Title - Band
Song Title - Band
Song Title - Band
Song Title - Band
Song Title - Band
<<
Play
>>
Stop
Shuffle
Play
var songs = new Array();
//*******************************//
//****** CHANGEABLE STUFF *******//
//*******************************//
var shuffle = false; // false = shuffle off, true = shuffle on
var autoStart = true; // false = autoStart off, true = autoStart on
var numberTracks = true; // true = place track number in front of list items, false = no track numbers
// Add song URLs here (make sure it matches up with the order you have for song info, and urls need quotes):
songs[0]="Song URL here";
songs[1]="Song URL here";
songs[2]="Song URL here";
songs[3]="Song URL here";
songs[4]="Song URL here";
songs[5]="Song URL here";
songs[6]="Song URL here";
songs[7]="Song URL here";
songs[8]="Song URL here";
songs[9]="Song URL here";
songs[10]="Song URL here";
songs[11]="Song URL here";
songs[12]="Song URL here";
songs[13]="Song URL here";
songs[14]="Song URL here";
songs[15]="Song URL here";
songs[16]="Song URL here";
songs[17]="Song URL here";
songs[18]="Song URL here";
//*******************************//
//*******************************//
// Initializations //
with (document){
var length = forms['form'].playlist.length;
if(numberTracks){
for (var i = 0; i < length; i++){
forms['form'].playlist.options[i].innerHTML = (i+1) + " - " + forms['form'].playlist.options[i].innerHTML;
}
}
if (shuffle) {
var randsg = Math.floor(Math.random()*songs.length);
Player.url = songs[randsg];
forms['form'].playlist.options[randsg].selected = true;
forms['form'].ShuffleSwitch.outerHTML = ShuffleOnHTML.innerHTML;
}
else {
forms['form'].ShuffleSwitch.outerHTML = ShuffleOffHTML.innerHTML;
Player.url = songs[0];
}
if(autoStart){
var snum = forms['form'].playlist.selectedIndex;
if(Player.url != songs[snum]){
Player.url = songs[snum];
}
Player.controls.Play();
}
}
// Functions //
// Discription: "PlayPause" will toggle playing and pausing if the same song is still selected,
// otherwise it will load the newly selected song
function PlayPause(list) {
var snum = list.selectedIndex;
if((Player.url == songs[snum] && Player.url != "") && Player.playState != 1){
if(Player.playState == 3){
Player.controls.Pause();
}
else {
Player.controls.Play();
}
}
else {
Player.url = songs[snum];
Player.controls.Play();
}
}
// Discription: "Next" will move to the next music file if shuffle is off
// otherwise it will load a random song. Calls PlayPause to start music.
function Next(list) {
var snum = list.selectedIndex;
if (!shuffle) {
if (snum == list.length-1) {
snum = -1;
}
snum++;
}
else {
var temp;
do{
temp = Math.floor(Math.random()*songs.length);
} while(temp == snum);
snum = temp;
}
list.options[snum].selected = true;
PlayPause(list);
}
// Discription: "Back" does the same thing as "Next" but moves backwads
// through the list. If shuffle is on then picks a random song.
function Back(list) {
var snum = list.selectedIndex;
if (!shuffle) {
if (snum == 0){
snum = list.length;
}
snum--;
}
else {
var temp;
do{
temp = Math.floor(Math.random()*songs.length);
} while(temp == snum);
snum = temp;
}
list.options[snum].selected = true;
PlayPause(list);
}
// Discription: Self explanitory.
function Stop(){
Player.controls.Stop();
}
// Discription: Makes the shuffle flag the same as the status of the CheckBox
// The status of the checkbox (true/false) indicates if the box is checked
function ToggleShuffle(CheckBox) {
shuffle = CheckBox.status;
}
// Description: This is an interupt handler used to handle instances when the
// state of the player changes to play or stop for example.
//STATE.innerText = NewState;
switch(NewState){
case 8: // Handles player after it just finishes playing through a song
var num = document.forms['form'].playlist.selectedIndex;
if (!shuffle){
if(num == document.forms['form'].playlist.length-1){
num = -1;
}
num++;
}
else {
var temp;
do{
temp = Math.floor(Math.random()*songs.length);
} while(temp == num);
num = temp;
}
document.forms['form'].playlist.options[num].selected = true;
PreviousState = NewState;
break;
case 1: // Handles player after it stops
if(PreviousState == 8){
var num = document.forms['form'].playlist.selectedIndex;
Player.settings.autoStart = true;
Player.url = songs[num];
PreviousState = NewState;
}
else if (PreviousState != 3 && PreviousState != 2){
Player.controls.Play();
Player.settings.autoStart = false;
}
else{
forms['form'].PlayPauseButton.innerHTML = PlayHTML.innerHTML;
}
break;
case 3: // Handles player after it starts to play
PreviousState = NewState;
forms['form'].PlayPauseButton.innerHTML = "Pause";
shuffle = document.forms['form'].ShuffleSwitch.status;
break;
case 2: // Handles player after being paused
PreviousState = NewState;
forms['form'].PlayPauseButton.innerHTML = PlayHTML.innerHTML;
break;
default:
}
|
|