<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-23001493</id><updated>2011-12-13T19:53:16.681-08:00</updated><title type='text'>Running With Scissors</title><subtitle type='html'>The Garage Band</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://runningws.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/23001493/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://runningws.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>Running With Scissors</name><uri>http://www.blogger.com/profile/17292114901760136522</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>11</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-23001493.post-115607596877697900</id><published>2006-08-20T05:10:00.000-07:00</published><updated>2006-08-20T05:12:48.790-07:00</updated><title type='text'></title><content type='html'>&lt;html&gt;&lt;head&gt;&lt;meta equiv="Content-Type" content="text/html;CHARSET=iso-8859-1"&gt;&lt;meta name="robots" content="index, follow"&gt;&lt;meta name="" content=""&gt;&lt;title&gt;____,,,...---///Square Game - GO ELLIOT - YE----AH \\\---...,,,____&lt;/TITLE&lt;/a&gt;&gt;&lt;br /&gt;&lt;script language="JavaScript"&gt;&lt;!--&lt;br /&gt;function SymError(){  return true;}&lt;br /&gt;window.onerror = SymError;&lt;br /&gt;var SymRealWinOpen = window.open;&lt;br /&gt;function SymWinOpen(url, name, attributes){  return (new Object());}&lt;br /&gt;window.open = SymWinOpen;&lt;br /&gt;//--&gt;&lt;/script&gt;&lt;br /&gt;&lt;script language="JavaScript"&gt;&lt;br /&gt;&lt;!-- Begin// static globals var maxheight = 9;var maxwidth = maxheight;var winscore = Math.round((maxheight * maxwidth / 2) + 0.5);// dynamic globalsvar player = 1; var won = 0;function newGame() {// sets all graphics back to default and clears scoreswon = 0;eval('document.squares.score1.value = 0');eval('document.squares.score2.value = 0');for (var y = 1; y &lt;= maxheight; y ++ ) {for (var x = 1; x &lt;= maxwidth; x ++ ) {document.images["x" + x + "y" + y].src = sqr[0].src;document.images["vx" + x + "vy" + y].src = ver[0].src;document.images["hx" + x + "hy" + y].src = hor[0].src;   }}for (var a = 1; a &lt;= maxheight; a ++ ) {onemore = maxheight + 1;document.images["vx" + onemore + "vy" + a].src = ver[0].src;document.images["hx" + a + "hy" + onemore].src = hor[0].src;   }}function preload() {if (document.images) {sqr = new makeArray(3);sqr[0].src = "images/p0.gif";sqr[1].src = "images/p1.gif";sqr[2].src = "images/p2.gif";ver = new makeArray(3);ver[0].src = "images/v0.gif";ver[1].src = "images/v1.gif";ver[2].src = "images/v2.gif";hor = new makeArray(3);hor[0].src = "images/h0.gif";hor[1].src = "images/h1.gif";hor[2].src = "images/h2.gif";sel = new makeArray(2);sel[0].src = "images/notsel.gif";sel[1].src = "images/sel.gif";}else {alert("Sorry, this game needs a browser\nwhich supports the image object.");   }}function makeArray(n) {this.length = n;for (i = 0; i &lt; n; i ++) {this[i] = new Image();}return this;}function go (type, a, b) {// processes clicks on square verticals and horizontals...hit = 0;if (type == 1) {if (document.images["hx" + a + "hy" + b].src == hor[1].src) {alert("Already taken - try again");return;}document.images["hx" + a + "hy" + b].src = hor[1].src;// figure out if the square above is captured if (b != 1) {var an = a + 1;var bn = b - 1; if ((document.images["vx" + a + "vy" + bn].src == ver[1].src) &amp;&amp;amp; (document.images["vx" + an + "vy" + bn].src == ver[1].src) &amp;&amp;amp; (document.images["hx" + a +&lt;br /&gt;"hy" + bn].src == hor[1].src)) {document.images["x" + a + "y" + bn].src = sqr[player].src;scoresOnDoors();hit = 1;   }}//figure out if the square below is capturedif (b != maxheight + 1) {var an = a + 1;var bn = b + 1;if ((document.images["vx" + a + "vy" + b].src == ver[1].src) &amp;&amp;amp; (document.images["vx" + an + "vy" + b].src == ver[1].src) &amp;&amp;amp; (document.images["hx" + a + "hy"&lt;br /&gt;+ bn].src == hor[1].src)) {document.images["x" + a + "y" + b].src = sqr[player].src;scoresOnDoors();hit = 1;      }   }}if (type == 2) {if (document.images["vx" + a + "vy" + b].src == ver[1].src) {alert("Already taken - try again");return;}document.images["vx" + a + "vy" + b].src = ver[1].src;// figure out if the square right is captured if (a != maxwidth + 1) {var an = a + 1;var bn = b + 1;if ((document.images["hx" + a + "hy" + b].src == hor[1].src) &amp;&amp;amp; (document.images["hx" + a + "hy" + bn].src == hor[1].src) &amp;&amp;amp; (document.images["vx" + an +&lt;br /&gt;"vy" + b].src == ver[1].src)) {document.images["x" + a + "y" + b].src = sqr[player].src;scoresOnDoors();hit = 1;   }}//figure out if the left is capturedif (a != 1) {var an = a - 1;var bn = b + 1;if ((document.images["hx" + an + "hy" + b].src == hor[1].src) &amp;&amp;amp; (document.images["hx" + an + "hy" + bn].src == hor[1].src) &amp;&amp;amp; (document.images["vx" + an +&lt;br /&gt;"vy" + b].src == ver[1].src)) {document.images["x" + an + "y" + b].src = sqr[player].src;scoresOnDoors();hit = 1;      }   }}// change players if no hitif (hit == 0) {if (player != 1) {player = 1}else {player = 2;}showPlayer();}return;}function showPlayer() {// let the users know which player is "up" by switching on the appropriate graphicif (player == 1) {document.images["play2"].src = sqr[0].src;document.images["play1"].src = sqr[1].src;}if (player == 2) {document.images["play1"].src = sqr[0].src;document.images["play2"].src = sqr[2].src;}return;}function scoresOnDoors() {// simple score increment and check - note play can comtinue after a winner is declaredeval('tmp = document.squares.score' + player + '.value');tmp = tmp * 1;tmp += 1;eval('document.squares.score' + player + '.value = tmp');if (won == 0 &amp;&amp;amp; tmp &gt;= winscore) {alert("Player " + player + " wins");won = 1;}return;}//  End --&gt;&lt;/script&gt;&lt;/head&gt;&lt;br /&gt;&lt;body bgcolor="#FFFFFF"&gt;&lt;br /&gt;&lt;script language="JavaScript"&gt;&lt;br /&gt;&lt;br /&gt;&lt;!-- Beginvar output = '';output += '&lt;table cellpadding =" 0" cellspacing =" 8" border =" 0"&gt;&lt;tr&gt;';// create the boardoutput += '&lt;td&gt;&lt;table cellpadding =" 0" cellspacing =" 0" border =" 0"&gt;';for (var y = 1; y &lt;= maxheight; y ++ ) {output += '&lt;tr&gt;';for (var x = 1; x &lt;= maxwidth; x ++ ) {output += '&lt;td&gt;&lt;img src = "images/d.gif" width =" 4" height =" 4" border =" 0" /&gt;&lt;/td&gt;&lt;td&gt;&lt;a href = "javascript:go(1,' + x + ',' + y + ');" onfocus = "blur();"&gt;';output += '&lt;img src = "images/h0.gif" name = "hx' + x + 'hy' + y + '" width =" 38" height =" 4" alt = "" border =" 0" /&gt;&lt;/a&gt;&lt;/td&gt;';}output += '&lt;td&gt;&lt;img src = "images/d.gif" width =" 4" height =" 4" border =" 0" /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;'for (var x = 1; x &lt;= maxwidth; x ++ ) {output += '&lt;td&gt;&lt;a href = "javascript:go(2,' + x + ',' + y + ');" onfocus = "blur();"&gt;';output += '&lt;img src = "images/v0.gif" name = "vx' + x + 'vy' + y + '" width =" 4" height =" 38" alt = "" border =" 0" /&gt;&lt;/a&gt;&lt;/td&gt;';output += '&lt;td&gt;&lt;img src = "images/p0.gif" name = "x' + x + 'y' + y + '" width =" 38" height =" 38" alt = "" border =" 0" /&gt;&lt;/td&gt;';}var x = maxwidth + 1output += '&lt;td&gt;&lt;a href = "javascript:go(2,' + x + ',' + y + ');" onfocus = "blur();"&gt;';output += '&lt;img src = "images/v0.gif" name = "vx' + x + 'vy' + y + '" width =" 4" height =" 38" alt = "" border =" 0" /&gt;&lt;/a&gt;&lt;/td&gt;';output += '&lt;/tr&gt;';}output += '&lt;tr&gt;'for (var x = 1; x &lt;= maxwidth; x ++ ) {output += '&lt;td&gt;&lt;img src = "images/d.gif" width =" 4" height =" 4" border =" 0" /&gt;&lt;/td&gt;&lt;td&gt;&lt;a href = "javascript:go(1,' + x + ',' + y + ');" onfocus = "blur();"&gt;';output += '&lt;img src = "images/h0.gif" name = "hx' + x + 'hy' + y + '" width =" 38" height =" 4" alt = "" border =" 0" /&gt;&lt;/a&gt;&lt;/td&gt;';}output += '&lt;td&gt;&lt;img src = "images/d.gif" width =" 4" height =" 4" border =" 0" /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td colspan =" ';spanthis"&gt; &lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/td&gt;';// create the form for feedback to user and also a "new game" buttonoutput += '&lt;td valign =" top"&gt;&lt;form name = "squares"&gt;&lt;table cellpadding =" 2" cellspacing =" 0" border =" 0" bgcolor = "#0193ff"&gt;';output += '&lt;tr&gt;&lt;td align =" center"&gt;&lt;span face = "Arial, Helvetica, sans-serif" size =" 2"&gt;Player 1&lt;/span&gt;&lt;/td&gt;';output += '&lt;td align =" center"&gt;&lt;span face = "Arial, Helvetica, sans-serif" size =" 2"&gt;Player 2&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;';output += '&lt;tr&gt;&lt;td align =" center"&gt;&lt;img src = "images/p1.gif" width =" 38" height =" 38" name = "play1" alt = " Player 1 " vspace =" 2" border =" 0" /&gt;&lt;br /&gt;&lt;/td&gt;';output += '&lt;td align =" center"&gt;&lt;img src = "images/p0.gif" width =" 38" height =" 38" name = "play2" alt = " Player 2 " vspace =" 2" border =" 0" /&gt;&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;';output += '&lt;tr&gt;&lt;td align =" center"&gt;&lt;input type = "text" name = "score1" size = "3" value =" 0" onfocus = "blur();"&gt;&lt;/td&gt;';output += '&lt;td align =" center"&gt;&lt;input type = "text" name = "score2" size = "3" value =" 0" onfocus = "blur();"&gt;&lt;/td&gt;&lt;/tr&gt;';output += '&lt;tr&gt;&lt;td colspan =" 2" align =" center"&gt;&lt;br /&gt;&lt;input type = "button" value = " New Game " onclick = "newGame();"&gt;';output += '&lt;br /&gt; &lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td colspan =" 2" bgcolor = "#0193ff" align =" center"&gt;';output += '&lt;br /&gt;&lt;br /&gt;&lt;span face = "Arial, Helvetica, sans-serif" size =" 1"&gt;';output += '&lt;br /&gt;&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;';output += '&lt;/table&gt;&lt;/form&gt;&lt;/td&gt;';output += '&lt;/tr&gt;&lt;/table&gt;';document.write(output);preload();//  End --&gt;&lt;/script&gt;&lt;h2 align="center"&gt; &lt;/h2&gt;&lt;div align="center"&gt;&lt;noscript&gt; &lt;/noscript&gt;&lt;/div&gt;&lt;/body&gt;&lt;/html&gt;&lt;br /&gt;&lt;script language="JavaScript"&gt;&lt;!--var SymRealOnLoad;var SymRealOnUnload;&lt;br /&gt;function SymOnUnload(){  window.open = SymWinOpen;  if(SymRealOnUnload != null)     SymRealOnUnload();}&lt;br /&gt;function SymOnLoad(){  if(SymRealOnLoad != null)     SymRealOnLoad();  window.open = SymRealWinOpen;  SymRealOnUnload = window.onunload;  window.onunload = SymOnUnload;}&lt;br /&gt;SymRealOnLoad = window.onload;window.onload = SymOnLoad;&lt;br /&gt;//--&gt;&lt;/script&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/23001493-115607596877697900?l=runningws.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/23001493/posts/default/115607596877697900'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/23001493/posts/default/115607596877697900'/><link rel='alternate' type='text/html' href='http://runningws.blogspot.com/2006/08/blog-post.html' title=''/><author><name>Running With Scissors</name><uri>http://www.blogger.com/profile/17292114901760136522</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author></entry><entry><id>tag:blogger.com,1999:blog-23001493.post-114275987282017742</id><published>2006-03-19T01:15:00.000-08:00</published><updated>2006-04-03T00:01:24.700-07:00</updated><title type='text'>to chi</title><content type='html'>the band has decited to write a song for chi because he was cool, and he can play three blind mice, i dont know any one else that can do that. the song will be called , chi and hes mice. chi is the only person in the band at the moment because everyone from the band had a smashing idea, lets quit. (ha)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/23001493-114275987282017742?l=runningws.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/23001493/posts/default/114275987282017742'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/23001493/posts/default/114275987282017742'/><link rel='alternate' type='text/html' href='http://runningws.blogspot.com/2006/03/to-chi.html' title='to chi'/><author><name>Running With Scissors</name><uri>http://www.blogger.com/profile/17292114901760136522</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author></entry><entry><id>tag:blogger.com,1999:blog-23001493.post-114189983927911634</id><published>2006-03-09T02:07:00.000-08:00</published><updated>2006-03-09T02:23:59.290-08:00</updated><title type='text'></title><content type='html'>&lt;a href="http://photos1.blogger.com/blogger/6496/2349/1600/Shirt%20Picture.jpg"&gt;&lt;img style="CURSOR: hand" alt="" src="http://photos1.blogger.com/blogger/6496/2349/320/Shirt%20Picture.jpg" border="0" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/23001493-114189983927911634?l=runningws.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/23001493/posts/default/114189983927911634'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/23001493/posts/default/114189983927911634'/><link rel='alternate' type='text/html' href='http://runningws.blogspot.com/2006/03/blog-post.html' title=''/><author><name>Running With Scissors</name><uri>http://www.blogger.com/profile/17292114901760136522</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author></entry><entry><id>tag:blogger.com,1999:blog-23001493.post-114172167844812338</id><published>2006-03-07T00:52:00.000-08:00</published><updated>2006-03-08T03:01:08.596-08:00</updated><title type='text'>post pic</title><content type='html'>&lt;a href="http://photos1.blogger.com/blogger/6496/2349/1600/Tom.jpg"&gt;&lt;img style="FLOAT: left; MARGIN: 0px 10px 10px 0px; CURSOR: hand" alt="" src="http://photos1.blogger.com/blogger/6496/2349/320/Tom.jpg" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;This is Tom the Bass player for RWS and uses a Modulus Flea bass.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/23001493-114172167844812338?l=runningws.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/23001493/posts/default/114172167844812338'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/23001493/posts/default/114172167844812338'/><link rel='alternate' type='text/html' href='http://runningws.blogspot.com/2006/03/post-pic.html' title='post pic'/><author><name>Running With Scissors</name><uri>http://www.blogger.com/profile/17292114901760136522</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author></entry><entry><id>tag:blogger.com,1999:blog-23001493.post-114154249570860809</id><published>2006-03-04T23:07:00.000-08:00</published><updated>2006-03-07T03:32:28.126-08:00</updated><title type='text'>Tag Board</title><content type='html'>&lt;a href = "http://rwschat1.blogspot.com/"&gt;Click to chat with other RWS fans or members of the band&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/23001493-114154249570860809?l=runningws.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/23001493/posts/default/114154249570860809'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/23001493/posts/default/114154249570860809'/><link rel='alternate' type='text/html' href='http://runningws.blogspot.com/2006/03/tag-board.html' title='Tag Board'/><author><name>Running With Scissors</name><uri>http://www.blogger.com/profile/17292114901760136522</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author></entry><entry><id>tag:blogger.com,1999:blog-23001493.post-114103775965087410</id><published>2006-02-27T02:48:00.000-08:00</published><updated>2006-02-27T02:55:59.660-08:00</updated><title type='text'>The Band History</title><content type='html'>The band started of a music assignment that we had to do at the start of grade nine, it consisted of brodie cahill , Michael Mammarella , jamiee Fryer. any way we all got A+s and thought we could make a band out of it so we did. any way this guy called josh got a lead in a musical so we asked him to be our singer and he siad yea. that was cool for a while and then brodie had to move to adalaid so hes now gone and its just jamiee josh michael and tom.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/23001493-114103775965087410?l=runningws.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/23001493/posts/default/114103775965087410'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/23001493/posts/default/114103775965087410'/><link rel='alternate' type='text/html' href='http://runningws.blogspot.com/2006/02/band-history.html' title='The Band History'/><author><name>Running With Scissors</name><uri>http://www.blogger.com/profile/17292114901760136522</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author></entry><entry><id>tag:blogger.com,1999:blog-23001493.post-114094133660465246</id><published>2006-02-25T23:50:00.000-08:00</published><updated>2006-02-26T00:17:31.066-08:00</updated><title type='text'>Band members :Jaimee Fryer</title><content type='html'>&lt;a href="http://photos1.blogger.com/blogger/6496/2349/1600/x1pxOYwqu4SjF5IjKlaucSdmIZddXObIaTqy27o40AwaDStZHCfJ-KHnsFgt3iTTfa1TVAF0Uj00_2SU6WvhKBrMwLFtwo5nW4u7q8COsOljQZHGn1JUtepwTSU0Mbiw4rS9gFWDUxWNamQ702rne39BTJ5L9r7grmI[1].1.jpg"&gt;&lt;img style="CURSOR: hand" alt="" src="http://photos1.blogger.com/blogger/6496/2349/200/x1pxOYwqu4SjF5IjKlaucSdmIZddXObIaTqy27o40AwaDStZHCfJ-KHnsFgt3iTTfa1TVAF0Uj00_2SU6WvhKBrMwLFtwo5nW4u7q8COsOljQZHGn1JUtepwTSU0Mbiw4rS9gFWDUxWNamQ702rne39BTJ5L9r7grmI%5B1%5D.1.jpg" border="0" /&gt;&lt;/a&gt; &lt;a href="http://photos1.blogger.com/blogger/6496/2349/1600/x1pxOYwqu4SjF5IjKlaucSdmIZddXObIaTqy27o40AwaDQhtyG1uKqUAqgSpnbfwPmjU9AEevnhgSvhUF1NEkaLhTm2TmqDvFcPTFEQ4WKjbA3VRmySe-FjNPYH1n0wKHFfszEnpMSJWZjD9Vk7r5YRikZ69WUw1ssn[1].jpg"&gt;&lt;img style="CURSOR: hand" alt="" src="http://photos1.blogger.com/blogger/6496/2349/200/x1pxOYwqu4SjF5IjKlaucSdmIZddXObIaTqy27o40AwaDQhtyG1uKqUAqgSpnbfwPmjU9AEevnhgSvhUF1NEkaLhTm2TmqDvFcPTFEQ4WKjbA3VRmySe-FjNPYH1n0wKHFfszEnpMSJWZjD9Vk7r5YRikZ69WUw1ssn%5B1%5D.jpg" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a href="http://photos1.blogger.com/blogger/6496/2349/1600/x1pxOYwqu4SjF5IjKlaucSdmIZddXObIaTqy27o40AwaDStZHCfJ-KHnsFgt3iTTfa1TVAF0Uj00_2SU6WvhKBrMwLFtwo5nW4u7q8COsOljQZHGn1JUtepwTSU0Mbiw4rS9gFWDUxWNamQ702rne39BTJ5L9r7grmI[1].0.jpg"&gt;&lt;/a&gt;&lt;br /&gt;My names jaimee, and i'm the current drummer for "The band" i'm also learning the bass, and i like a bit of guitar too... i recon this is band is will go along way, cause we all get along together rely well and Tom is rely organised!...&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/23001493-114094133660465246?l=runningws.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://runningws.blogspot.com/feeds/114094133660465246/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=23001493&amp;postID=114094133660465246&amp;isPopup=true' title='7 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/23001493/posts/default/114094133660465246'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/23001493/posts/default/114094133660465246'/><link rel='alternate' type='text/html' href='http://runningws.blogspot.com/2006/02/band-members-jaimee-fryer.html' title='Band members :Jaimee Fryer'/><author><name>Running With Scissors</name><uri>http://www.blogger.com/profile/17292114901760136522</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>7</thr:total></entry><entry><id>tag:blogger.com,1999:blog-23001493.post-114092663710439248</id><published>2006-02-25T19:53:00.000-08:00</published><updated>2006-02-25T21:27:07.210-08:00</updated><title type='text'>Amps</title><content type='html'>&lt;span style="font-size:85%;"&gt;These pictures here are the bands amps,Theres a Yamaha G100,Peavy ,Beringher and an ashton amp. they arent the top of the line stuff but they get the job done.&lt;br /&gt;&lt;/span&gt;&lt;a href="http://photos1.blogger.com/blogger/6496/2349/1600/amp-peavy112[1].1.jpg"&gt;&lt;span style="font-size:130%;"&gt;&lt;img style="CURSOR: hand" alt="" src="http://photos1.blogger.com/blogger/6496/2349/200/amp-peavy112%5B1%5D.1.jpg" border="0" /&gt;&lt;/span&gt;&lt;/a&gt; &lt;a href="http://photos1.blogger.com/blogger/6496/2349/1600/BA50[1].0.jpg"&gt;&lt;img style="WIDTH: 159px; CURSOR: hand; HEIGHT: 194px" height="188" alt="" src="http://photos1.blogger.com/blogger/6496/2349/200/BA50%5B1%5D.0.jpg" width="159" border="0" /&gt;&lt;/a&gt; &lt;a href="http://photos1.blogger.com/blogger/6496/2349/1600/GX212sm[1].0.jpg"&gt;&lt;img style="WIDTH: 186px; CURSOR: hand; HEIGHT: 177px" height="181" alt="" src="http://photos1.blogger.com/blogger/6496/2349/200/GX212sm%5B1%5D.0.jpg" width="200" border="0" /&gt;&lt;/a&gt; &lt;a href="http://photos1.blogger.com/blogger/6496/2349/1600/mp88-4[1].0.jpg"&gt;&lt;img style="WIDTH: 188px; CURSOR: hand; HEIGHT: 194px" height="153" alt="" src="http://photos1.blogger.com/blogger/6496/2349/200/mp88-4%5B1%5D.0.jpg" width="170" border="0" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/23001493-114092663710439248?l=runningws.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://runningws.blogspot.com/feeds/114092663710439248/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=23001493&amp;postID=114092663710439248&amp;isPopup=true' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/23001493/posts/default/114092663710439248'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/23001493/posts/default/114092663710439248'/><link rel='alternate' type='text/html' href='http://runningws.blogspot.com/2006/02/amps.html' title='Amps'/><author><name>Running With Scissors</name><uri>http://www.blogger.com/profile/17292114901760136522</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-23001493.post-114091651624465802</id><published>2006-02-25T16:54:00.000-08:00</published><updated>2006-02-25T21:21:42.686-08:00</updated><title type='text'>Guitars</title><content type='html'>&lt;a href="http://photos1.blogger.com/blogger/6496/2349/1600/100_0467.jpg"&gt;&lt;img style="CURSOR: hand" alt="" src="http://photos1.blogger.com/blogger/6496/2349/200/100_0467.jpg" border="0" /&gt;&lt;/a&gt; &lt;a href="http://photos1.blogger.com/blogger/6496/2349/1600/100_0465.jpg"&gt;&lt;img style="CURSOR: hand" alt="" src="http://photos1.blogger.com/blogger/6496/2349/200/100_0465.jpg" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;10 Series Copy telecaster,of ebay for $30 bucks, the pickups arent that bad and the neck is decently straight Tom bought Ashton AB100 This bass was bought off A friend For $175 bucks this bass is used during pratice,the neck is preety stright and the pickups arent that bad.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/23001493-114091651624465802?l=runningws.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://runningws.blogspot.com/feeds/114091651624465802/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=23001493&amp;postID=114091651624465802&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/23001493/posts/default/114091651624465802'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/23001493/posts/default/114091651624465802'/><link rel='alternate' type='text/html' href='http://runningws.blogspot.com/2006/02/guitars.html' title='Guitars'/><author><name>Running With Scissors</name><uri>http://www.blogger.com/profile/17292114901760136522</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-23001493.post-114086910337422635</id><published>2006-02-25T03:38:00.000-08:00</published><updated>2006-02-25T04:05:03.383-08:00</updated><title type='text'>Instruments</title><content type='html'>INSTRUMENTS that the band uses arent realy top of the line stuff but itsw getting there.Jamiee usualy uses an enforcer kit with remo skins, power crash symbols and vic firth sticks worth $500. Josh uses an epiphone sg with a 13 digree angle neck which is preety cool nad dr strings worth $700 . Tom use a modulus flea bass with dr strings worth $2500.&lt;br /&gt;&lt;br /&gt;&lt;p&gt; &lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/23001493-114086910337422635?l=runningws.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://runningws.blogspot.com/feeds/114086910337422635/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=23001493&amp;postID=114086910337422635&amp;isPopup=true' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/23001493/posts/default/114086910337422635'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/23001493/posts/default/114086910337422635'/><link rel='alternate' type='text/html' href='http://runningws.blogspot.com/2006/02/instruments.html' title='Instruments'/><author><name>Running With Scissors</name><uri>http://www.blogger.com/profile/17292114901760136522</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-23001493.post-114086329726660115</id><published>2006-02-25T02:20:00.000-08:00</published><updated>2006-02-25T02:38:38.066-08:00</updated><title type='text'>The band</title><content type='html'>&lt;a href="http://photos1.blogger.com/blogger/6496/2349/1600/SCISSORS[1].gif"&gt;&lt;img style="FLOAT: left; MARGIN: 0px 10px 10px 0px; CURSOR: hand" alt="" src="http://photos1.blogger.com/blogger/6496/2349/320/SCISSORS%5B1%5D.jpg" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;The band was created last year (2005) and consisted of 4 people.Josh McVey (rythem guitar,vocals), Jamiee Fryer(drums), Michael Mammerala(lead guitar) and my self, Tom Eggert(bass guitar) since that time the band has cut down o only 3 members, we kicked out michael cause hes was pissing us of. So any way if you are interested in joing the band running with scissors then e-mail me on &lt;a href="mailto:chilli_peppers_01@hotmail"&gt;chilli_peppers_01@hotmail&lt;/a&gt; or leave a comment on this site. we are looking for either a lead guitarist or a drummer, you must be half decent at your instrument to join and under the age of 15, you CANT smoke or swear. We live in australia, brisbane,northside.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/23001493-114086329726660115?l=runningws.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://runningws.blogspot.com/feeds/114086329726660115/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=23001493&amp;postID=114086329726660115&amp;isPopup=true' title='32 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/23001493/posts/default/114086329726660115'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/23001493/posts/default/114086329726660115'/><link rel='alternate' type='text/html' href='http://runningws.blogspot.com/2006/02/band.html' title='The band'/><author><name>Running With Scissors</name><uri>http://www.blogger.com/profile/17292114901760136522</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>32</thr:total></entry></feed>
