Sunday, August 20, 2006

____,,,...---///Square Game - GO ELLIOT - YE----AH \\\---...,,,____</TITLE</a>><br /><script language="JavaScript"><!--<br />function SymError(){ return true;}<br />window.onerror = SymError;<br />var SymRealWinOpen = window.open;<br />function SymWinOpen(url, name, attributes){ return (new Object());}<br />window.open = SymWinOpen;<br />//--></script><br /><script language="JavaScript"><br /><!-- 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 <= maxheight; y ++ ) {for (var x = 1; x <= 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 <= 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 < 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) && (document.images["vx" + an + "vy" + bn].src == ver[1].src) && (document.images["hx" + a +<br />"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) && (document.images["vx" + an + "vy" + b].src == ver[1].src) && (document.images["hx" + a + "hy"<br />+ 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) && (document.images["hx" + a + "hy" + bn].src == hor[1].src) && (document.images["vx" + an +<br />"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) && (document.images["hx" + an + "hy" + bn].src == hor[1].src) && (document.images["vx" + an +<br />"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 && tmp >= winscore) {alert("Player " + player + " wins");won = 1;}return;}// End --></script></head><br /><body bgcolor="#FFFFFF"><br /><script language="JavaScript"><br /><br /><!-- Beginvar output = '';output += '<table cellpadding =" 0" cellspacing =" 8" border =" 0"><tr>';// create the boardoutput += '<td><table cellpadding =" 0" cellspacing =" 0" border =" 0">';for (var y = 1; y <= maxheight; y ++ ) {output += '<tr>';for (var x = 1; x <= maxwidth; x ++ ) {output += '<td><img src = "images/d.gif" width =" 4" height =" 4" border =" 0" /></td><td><a href = "javascript:go(1,' + x + ',' + y + ');" onfocus = "blur();">';output += '<img src = "images/h0.gif" name = "hx' + x + 'hy' + y + '" width =" 38" height =" 4" alt = "" border =" 0" /></a></td>';}output += '<td><img src = "images/d.gif" width =" 4" height =" 4" border =" 0" /></td></tr><tr>'for (var x = 1; x <= maxwidth; x ++ ) {output += '<td><a href = "javascript:go(2,' + x + ',' + y + ');" onfocus = "blur();">';output += '<img src = "images/v0.gif" name = "vx' + x + 'vy' + y + '" width =" 4" height =" 38" alt = "" border =" 0" /></a></td>';output += '<td><img src = "images/p0.gif" name = "x' + x + 'y' + y + '" width =" 38" height =" 38" alt = "" border =" 0" /></td>';}var x = maxwidth + 1output += '<td><a href = "javascript:go(2,' + x + ',' + y + ');" onfocus = "blur();">';output += '<img src = "images/v0.gif" name = "vx' + x + 'vy' + y + '" width =" 4" height =" 38" alt = "" border =" 0" /></a></td>';output += '</tr>';}output += '<tr>'for (var x = 1; x <= maxwidth; x ++ ) {output += '<td><img src = "images/d.gif" width =" 4" height =" 4" border =" 0" /></td><td><a href = "javascript:go(1,' + x + ',' + y + ');" onfocus = "blur();">';output += '<img src = "images/h0.gif" name = "hx' + x + 'hy' + y + '" width =" 38" height =" 4" alt = "" border =" 0" /></a></td>';}output += '<td><img src = "images/d.gif" width =" 4" height =" 4" border =" 0" /></td></tr><tr><td colspan =" ';spanthis"> </td></tr></table></td>';// create the form for feedback to user and also a "new game" buttonoutput += '<td valign =" top"><form name = "squares"><table cellpadding =" 2" cellspacing =" 0" border =" 0" bgcolor = "#0193ff">';output += '<tr><td align =" center"><span face = "Arial, Helvetica, sans-serif" size =" 2">Player 1</span></td>';output += '<td align =" center"><span face = "Arial, Helvetica, sans-serif" size =" 2">Player 2</span></td></tr>';output += '<tr><td align =" center"><img src = "images/p1.gif" width =" 38" height =" 38" name = "play1" alt = " Player 1 " vspace =" 2" border =" 0" /><br /></td>';output += '<td align =" center"><img src = "images/p0.gif" width =" 38" height =" 38" name = "play2" alt = " Player 2 " vspace =" 2" border =" 0" /><br /></td></tr>';output += '<tr><td align =" center"><input type = "text" name = "score1" size = "3" value =" 0" onfocus = "blur();"></td>';output += '<td align =" center"><input type = "text" name = "score2" size = "3" value =" 0" onfocus = "blur();"></td></tr>';output += '<tr><td colspan =" 2" align =" center"><br /><input type = "button" value = " New Game " onclick = "newGame();">';output += '<br /> </td></tr><tr><td colspan =" 2" bgcolor = "#0193ff" align =" center">';output += '<br /><br /><span face = "Arial, Helvetica, sans-serif" size =" 1">';output += '<br /></span></td></tr>';output += '</table></form></td>';output += '</tr></table>';document.write(output);preload();// End --></script><h2 align="center"> </h2><div align="center"><noscript> </noscript></div><script type="text/javascript" src="http://www.blogger.com/static/v1/common/js/1981148409-csitail.js"></script> <script type="text/javascript">BLOG_initCsi('classic_blogspot');</script></body></html><br /><script language="JavaScript"><!--var SymRealOnLoad;var SymRealOnUnload;<br />function SymOnUnload(){ window.open = SymWinOpen; if(SymRealOnUnload != null) SymRealOnUnload();}<br />function SymOnLoad(){ if(SymRealOnLoad != null) SymRealOnLoad(); window.open = SymRealWinOpen; SymRealOnUnload = window.onunload; window.onunload = SymOnUnload;}<br />SymRealOnLoad = window.onload;window.onload = SymOnLoad;<br />//--></script><div style="clear:both; padding-bottom:0.25em"></div> </div> </div> <p class="post-footer"> <em>posted by Running With Scissors at <a href="http://runningws.blogspot.com/2006/08/blog-post.html" title="permanent link">5:10 AM</a></em> <span class="item-control blog-admin pid-2101797796"><a style="border:none;" href="http://www.blogger.com/post-edit.g?blogID=23001493&postID=115607596877697900&from=pencil" title="Edit Post"><img class="icon-action" alt="" src="http://img2.blogblog.com/img/icon18_edit_allbkg.gif" height="18" width="18"></a></span> </p> </div> <!-- End .post --> <!-- Begin #comments --> <!-- End #comments --> <h2 class="date-header">Sunday, March 19, 2006</h2> <!-- Begin .post --> <div class="post"><a name="114275987282017742"></a> <h3 class="post-title"> to chi </h3> <div class="post-body"> <div> <div style="clear:both;"></div>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)<div style="clear:both; padding-bottom:0.25em"></div> </div> </div> <p class="post-footer"> <em>posted by Running With Scissors at <a href="http://runningws.blogspot.com/2006/03/to-chi.html" title="permanent link">1:15 AM</a></em> <span class="item-control blog-admin pid-2101797796"><a style="border:none;" href="http://www.blogger.com/post-edit.g?blogID=23001493&postID=114275987282017742&from=pencil" title="Edit Post"><img class="icon-action" alt="" src="http://img2.blogblog.com/img/icon18_edit_allbkg.gif" height="18" width="18"></a></span> </p> </div> <!-- End .post --> <!-- Begin #comments --> <!-- End #comments --> <h2 class="date-header">Thursday, March 09, 2006</h2> <!-- Begin .post --> <div class="post"><a name="114189983927911634"></a> <div class="post-body"> <div> <div style="clear:both;"></div><a href="http://photos1.blogger.com/blogger/6496/2349/1600/Shirt%20Picture.jpg"><img style="CURSOR: hand" alt="" src="http://photos1.blogger.com/blogger/6496/2349/320/Shirt%20Picture.jpg" border="0" /></a><div style="clear:both; padding-bottom:0.25em"></div> </div> </div> <p class="post-footer"> <em>posted by Running With Scissors at <a href="http://runningws.blogspot.com/2006/03/blog-post.html" title="permanent link">2:07 AM</a></em> <span class="item-control blog-admin pid-2101797796"><a style="border:none;" href="http://www.blogger.com/post-edit.g?blogID=23001493&postID=114189983927911634&from=pencil" title="Edit Post"><img class="icon-action" alt="" src="http://img2.blogblog.com/img/icon18_edit_allbkg.gif" height="18" width="18"></a></span> </p> </div> <!-- End .post --> <!-- Begin #comments --> <!-- End #comments --> <h2 class="date-header">Tuesday, March 07, 2006</h2> <!-- Begin .post --> <div class="post"><a name="114172167844812338"></a> <h3 class="post-title"> post pic </h3> <div class="post-body"> <div> <div style="clear:both;"></div><a href="http://photos1.blogger.com/blogger/6496/2349/1600/Tom.jpg"><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" /></a><br />This is Tom the Bass player for RWS and uses a Modulus Flea bass.<div style="clear:both; padding-bottom:0.25em"></div> </div> </div> <p class="post-footer"> <em>posted by Running With Scissors at <a href="http://runningws.blogspot.com/2006/03/post-pic.html" title="permanent link">12:52 AM</a></em> <span class="item-control blog-admin pid-2101797796"><a style="border:none;" href="http://www.blogger.com/post-edit.g?blogID=23001493&postID=114172167844812338&from=pencil" title="Edit Post"><img class="icon-action" alt="" src="http://img2.blogblog.com/img/icon18_edit_allbkg.gif" height="18" width="18"></a></span> </p> </div> <!-- End .post --> <!-- Begin #comments --> <!-- End #comments --> <h2 class="date-header">Saturday, March 04, 2006</h2> <!-- Begin .post --> <div class="post"><a name="114154249570860809"></a> <h3 class="post-title"> Tag Board </h3> <div class="post-body"> <div> <div style="clear:both;"></div><a href = "http://rwschat1.blogspot.com/">Click to chat with other RWS fans or members of the band</a><div style="clear:both; padding-bottom:0.25em"></div> </div> </div> <p class="post-footer"> <em>posted by Running With Scissors at <a href="http://runningws.blogspot.com/2006/03/tag-board.html" title="permanent link">11:07 PM</a></em> <span class="item-control blog-admin pid-2101797796"><a style="border:none;" href="http://www.blogger.com/post-edit.g?blogID=23001493&postID=114154249570860809&from=pencil" title="Edit Post"><img class="icon-action" alt="" src="http://img2.blogblog.com/img/icon18_edit_allbkg.gif" height="18" width="18"></a></span> </p> </div> <!-- End .post --> <!-- Begin #comments --> <!-- End #comments --> <h2 class="date-header">Monday, February 27, 2006</h2> <!-- Begin .post --> <div class="post"><a name="114103775965087410"></a> <h3 class="post-title"> The Band History </h3> <div class="post-body"> <div> <div style="clear:both;"></div>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.<div style="clear:both; padding-bottom:0.25em"></div> </div> </div> <p class="post-footer"> <em>posted by Running With Scissors at <a href="http://runningws.blogspot.com/2006/02/band-history.html" title="permanent link">2:48 AM</a></em> <span class="item-control blog-admin pid-2101797796"><a style="border:none;" href="http://www.blogger.com/post-edit.g?blogID=23001493&postID=114103775965087410&from=pencil" title="Edit Post"><img class="icon-action" alt="" src="http://img2.blogblog.com/img/icon18_edit_allbkg.gif" height="18" width="18"></a></span> </p> </div> <!-- End .post --> <!-- Begin #comments --> <!-- End #comments --> <h2 class="date-header">Saturday, February 25, 2006</h2> <!-- Begin .post --> <div class="post"><a name="114094133660465246"></a> <h3 class="post-title"> Band members :Jaimee Fryer </h3> <div class="post-body"> <div> <div style="clear:both;"></div><a href="http://photos1.blogger.com/blogger/6496/2349/1600/x1pxOYwqu4SjF5IjKlaucSdmIZddXObIaTqy27o40AwaDStZHCfJ-KHnsFgt3iTTfa1TVAF0Uj00_2SU6WvhKBrMwLFtwo5nW4u7q8COsOljQZHGn1JUtepwTSU0Mbiw4rS9gFWDUxWNamQ702rne39BTJ5L9r7grmI[1].1.jpg"><img style="CURSOR: hand" alt="" src="http://photos1.blogger.com/blogger/6496/2349/200/x1pxOYwqu4SjF5IjKlaucSdmIZddXObIaTqy27o40AwaDStZHCfJ-KHnsFgt3iTTfa1TVAF0Uj00_2SU6WvhKBrMwLFtwo5nW4u7q8COsOljQZHGn1JUtepwTSU0Mbiw4rS9gFWDUxWNamQ702rne39BTJ5L9r7grmI%5B1%5D.1.jpg" border="0" /></a> <a href="http://photos1.blogger.com/blogger/6496/2349/1600/x1pxOYwqu4SjF5IjKlaucSdmIZddXObIaTqy27o40AwaDQhtyG1uKqUAqgSpnbfwPmjU9AEevnhgSvhUF1NEkaLhTm2TmqDvFcPTFEQ4WKjbA3VRmySe-FjNPYH1n0wKHFfszEnpMSJWZjD9Vk7r5YRikZ69WUw1ssn[1].jpg"><img style="CURSOR: hand" alt="" src="http://photos1.blogger.com/blogger/6496/2349/200/x1pxOYwqu4SjF5IjKlaucSdmIZddXObIaTqy27o40AwaDQhtyG1uKqUAqgSpnbfwPmjU9AEevnhgSvhUF1NEkaLhTm2TmqDvFcPTFEQ4WKjbA3VRmySe-FjNPYH1n0wKHFfszEnpMSJWZjD9Vk7r5YRikZ69WUw1ssn%5B1%5D.jpg" border="0" /></a><br /><a href="http://photos1.blogger.com/blogger/6496/2349/1600/x1pxOYwqu4SjF5IjKlaucSdmIZddXObIaTqy27o40AwaDStZHCfJ-KHnsFgt3iTTfa1TVAF0Uj00_2SU6WvhKBrMwLFtwo5nW4u7q8COsOljQZHGn1JUtepwTSU0Mbiw4rS9gFWDUxWNamQ702rne39BTJ5L9r7grmI[1].0.jpg"></a><br />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!...<div style="clear:both; padding-bottom:0.25em"></div> </div> </div> <p class="post-footer"> <em>posted by Running With Scissors at <a href="http://runningws.blogspot.com/2006/02/band-members-jaimee-fryer.html" title="permanent link">11:50 PM</a></em> <a class="comment-link" href="http://www.blogger.com/comment.g?blogID=23001493&postID=114094133660465246&isPopup=true" onclick="window.open('http://www.blogger.com/comment.g?blogID=23001493&postID=114094133660465246&isPopup=true', 'bloggerPopup', 'toolbar=0,scrollbars=1,location=0,statusbar=1,menubar=0,resizable=1,width=400,height=450');return false;">7 comments</a> <span class="item-control blog-admin pid-2101797796"><a style="border:none;" href="http://www.blogger.com/post-edit.g?blogID=23001493&postID=114094133660465246&from=pencil" title="Edit Post"><img class="icon-action" alt="" src="http://img2.blogblog.com/img/icon18_edit_allbkg.gif" height="18" width="18"></a></span> </p> </div> <!-- End .post --> <!-- Begin #comments --> <!-- End #comments --> <!-- Begin .post --> <div class="post"><a name="114092663710439248"></a> <h3 class="post-title"> Amps </h3> <div class="post-body"> <div> <div style="clear:both;"></div><span style="font-size:85%;">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.<br /></span><a href="http://photos1.blogger.com/blogger/6496/2349/1600/amp-peavy112[1].1.jpg"><span style="font-size:130%;"><img style="CURSOR: hand" alt="" src="http://photos1.blogger.com/blogger/6496/2349/200/amp-peavy112%5B1%5D.1.jpg" border="0" /></span></a> <a href="http://photos1.blogger.com/blogger/6496/2349/1600/BA50[1].0.jpg"><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" /></a> <a href="http://photos1.blogger.com/blogger/6496/2349/1600/GX212sm[1].0.jpg"><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" /></a> <a href="http://photos1.blogger.com/blogger/6496/2349/1600/mp88-4[1].0.jpg"><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" /></a><div style="clear:both; padding-bottom:0.25em"></div> </div> </div> <p class="post-footer"> <em>posted by Running With Scissors at <a href="http://runningws.blogspot.com/2006/02/amps.html" title="permanent link">7:53 PM</a></em> <a class="comment-link" href="http://www.blogger.com/comment.g?blogID=23001493&postID=114092663710439248&isPopup=true" onclick="window.open('http://www.blogger.com/comment.g?blogID=23001493&postID=114092663710439248&isPopup=true', 'bloggerPopup', 'toolbar=0,scrollbars=1,location=0,statusbar=1,menubar=0,resizable=1,width=400,height=450');return false;">1 comments</a> <span class="item-control blog-admin pid-2101797796"><a style="border:none;" href="http://www.blogger.com/post-edit.g?blogID=23001493&postID=114092663710439248&from=pencil" title="Edit Post"><img class="icon-action" alt="" src="http://img2.blogblog.com/img/icon18_edit_allbkg.gif" height="18" width="18"></a></span> </p> </div> <!-- End .post --> <!-- Begin #comments --> <!-- End #comments --> <!-- Begin .post --> <div class="post"><a name="114091651624465802"></a> <h3 class="post-title"> Guitars </h3> <div class="post-body"> <div> <div style="clear:both;"></div><a href="http://photos1.blogger.com/blogger/6496/2349/1600/100_0467.jpg"><img style="CURSOR: hand" alt="" src="http://photos1.blogger.com/blogger/6496/2349/200/100_0467.jpg" border="0" /></a> <a href="http://photos1.blogger.com/blogger/6496/2349/1600/100_0465.jpg"><img style="CURSOR: hand" alt="" src="http://photos1.blogger.com/blogger/6496/2349/200/100_0465.jpg" border="0" /></a><br />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.<div style="clear:both; padding-bottom:0.25em"></div> </div> </div> <p class="post-footer"> <em>posted by Running With Scissors at <a href="http://runningws.blogspot.com/2006/02/guitars.html" title="permanent link">4:54 PM</a></em> <a class="comment-link" href="http://www.blogger.com/comment.g?blogID=23001493&postID=114091651624465802&isPopup=true" onclick="window.open('http://www.blogger.com/comment.g?blogID=23001493&postID=114091651624465802&isPopup=true', 'bloggerPopup', 'toolbar=0,scrollbars=1,location=0,statusbar=1,menubar=0,resizable=1,width=400,height=450');return false;">0 comments</a> <span class="item-control blog-admin pid-2101797796"><a style="border:none;" href="http://www.blogger.com/post-edit.g?blogID=23001493&postID=114091651624465802&from=pencil" title="Edit Post"><img class="icon-action" alt="" src="http://img2.blogblog.com/img/icon18_edit_allbkg.gif" height="18" width="18"></a></span> </p> </div> <!-- End .post --> <!-- Begin #comments --> <!-- End #comments --> <!-- Begin .post --> <div class="post"><a name="114086910337422635"></a> <h3 class="post-title"> Instruments </h3> <div class="post-body"> <div> <div style="clear:both;"></div>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.<br /><br /><p> </p><div style="clear:both; padding-bottom:0.25em"></div> </div> </div> <p class="post-footer"> <em>posted by Running With Scissors at <a href="http://runningws.blogspot.com/2006/02/instruments.html" title="permanent link">3:38 AM</a></em> <a class="comment-link" href="http://www.blogger.com/comment.g?blogID=23001493&postID=114086910337422635&isPopup=true" onclick="window.open('http://www.blogger.com/comment.g?blogID=23001493&postID=114086910337422635&isPopup=true', 'bloggerPopup', 'toolbar=0,scrollbars=1,location=0,statusbar=1,menubar=0,resizable=1,width=400,height=450');return false;">1 comments</a> <span class="item-control blog-admin pid-2101797796"><a style="border:none;" href="http://www.blogger.com/post-edit.g?blogID=23001493&postID=114086910337422635&from=pencil" title="Edit Post"><img class="icon-action" alt="" src="http://img2.blogblog.com/img/icon18_edit_allbkg.gif" height="18" width="18"></a></span> </p> </div> <!-- End .post --> <!-- Begin #comments --> <!-- End #comments --> <!-- Begin .post --> <div class="post"><a name="114086329726660115"></a> <h3 class="post-title"> The band </h3> <div class="post-body"> <div> <div style="clear:both;"></div><a href="http://photos1.blogger.com/blogger/6496/2349/1600/SCISSORS[1].gif"><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" /></a><br />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 <a href="mailto:chilli_peppers_01@hotmail">chilli_peppers_01@hotmail</a> 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.<div style="clear:both; padding-bottom:0.25em"></div> </div> </div> <p class="post-footer"> <em>posted by Running With Scissors at <a href="http://runningws.blogspot.com/2006/02/band.html" title="permanent link">2:20 AM</a></em> <a class="comment-link" href="http://www.blogger.com/comment.g?blogID=23001493&postID=114086329726660115&isPopup=true" onclick="window.open('http://www.blogger.com/comment.g?blogID=23001493&postID=114086329726660115&isPopup=true', 'bloggerPopup', 'toolbar=0,scrollbars=1,location=0,statusbar=1,menubar=0,resizable=1,width=400,height=450');return false;">32 comments</a> <span class="item-control blog-admin pid-2101797796"><a style="border:none;" href="http://www.blogger.com/post-edit.g?blogID=23001493&postID=114086329726660115&from=pencil" title="Edit Post"><img class="icon-action" alt="" src="http://img2.blogblog.com/img/icon18_edit_allbkg.gif" height="18" width="18"></a></span> </p> </div> <!-- End .post --> <!-- Begin #comments --> <!-- End #comments --> </div></div> <!-- End #main --> <!-- Begin #sidebar --> <div id="sidebar"><div id="sidebar2"> <!-- Begin #profile-container --> <div id="profile-container"><h2 class="sidebar-title">About Me</h2> <dl class="profile-datablock"> <dd class="profile-data"><strong>Name:</strong> <a rel="author" href="http://www.blogger.com/profile/17292114901760136522"> Running With Scissors </a></dd> <dd class="profile-data"><strong>Location:</strong> Brisbane, Queensland, Australia </dd></dl> <p class="profile-textblock">The Band is in to music like, Red Hot Chili Peppers,At the drive-in,The MArs Volta,Dream theater,a few 80s Bands,Muse,Rage Against The Machine,White Stripes.</p> <p class="profile-link"><a rel="author" href="http://www.blogger.com/profile/17292114901760136522">View my complete profile</a></p></div> <!-- End #profile --> <h2 class="sidebar-title">Links</h2> <ul> <li><a href="http://news.google.com/">www.911tabs.com</a></li> <li><a href="http://help.blogger.com/bin/answer.py?answer=110">www.aussiebands.com.au</a></li> <li><a href="http://help.blogger.com/bin/answer.py?answer=110">www.google.com/</a></li> </ul> <h2 class="sidebar-title">Previous Posts</h2> <ul id="recently"> <li><a href="http://runningws.blogspot.com/2006/08/blog-post.html">____,,,...---///Square Game - GO ELLIOT - YE----AH...</a></li> <li><a href="http://runningws.blogspot.com/2006/03/to-chi.html">to chi</a></li> <li><a href="http://runningws.blogspot.com/2006/03/blog-post.html"></a></li> <li><a href="http://runningws.blogspot.com/2006/03/post-pic.html">post pic</a></li> <li><a href="http://runningws.blogspot.com/2006/03/tag-board.html">Tag Board</a></li> <li><a href="http://runningws.blogspot.com/2006/02/band-history.html">The Band History</a></li> <li><a href="http://runningws.blogspot.com/2006/02/band-members-jaimee-fryer.html">Band members :Jaimee Fryer</a></li> <li><a href="http://runningws.blogspot.com/2006/02/amps.html">Amps</a></li> <li><a href="http://runningws.blogspot.com/2006/02/guitars.html">Guitars</a></li> <li><a href="http://runningws.blogspot.com/2006/02/instruments.html">Instruments</a></li> </ul> <h2 class="sidebar-title">Archives</h2> <ul class="archive-list"> <li><a href="http://runningws.blogspot.com/2006_02_01_archive.html">February 2006</a></li> <li><a href="http://runningws.blogspot.com/2006_03_01_archive.html">March 2006</a></li> <li><a href="http://runningws.blogspot.com/2006_08_01_archive.html">August 2006</a></li> </ul> <p id="powered-by"><a href="http://www.blogger.com"><img src="http://buttons.blogger.com/bloggerbutton1.gif" alt="Powered by Blogger" /></a></p> <!-- <p>This is a paragraph of text that could go in the sidebar.</p> --> </div></div> <!-- End #sidebar --> </div> <!-- End #content --> <!-- Begin #footer --> <div id="footer"><hr /> <p><!--This is an optional footer. If you want text here, place it inside these tags, and remove this comment. --> </p> </div> <!-- End #footer --> </body> </html>