


<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">



<html xmlns="http://www.w3.org/1999/xhtml">

<head profile="http://gmpg.org/xfn/11">

<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />

<meta name="generator" content="Podbean 3.2" /> <!-- leave this for stats -->

<meta name="description" content="" />

<meta name="keywords" content="" />

<meta name="author" content="Ainslie Johnson / Original design by Andreas Viklund - http://andreasviklund.com" />

<link rel="stylesheet" href="http://www.podbean.com/wp-content/themes/wp-andreas09/style.css" type="text/css" media="screen" />
<link rel="stylesheet" href="http://www.podbean.com/home/css/blogstyle.css" type="text/css" media="screen" />

<link rel="stylesheet" href="http://www.podbean.com/wp-content/themes/wp-andreas09/blue.css" type="text/css" media="screen" />

<link rel="alternate" type="application/rss+xml" title="thehookandsling RSS Feed" href="http://thehookandsling.podbean.com/feed/" />

<link rel="pingback" href="http://www.podbean.com/xmlrpc.php" />

<link rel="EditURI" type="application/rsd+xml" title="RSD" href="http://www.podbean.com/xmlrpc.php?rsd" />
		<script type="text/javascript">
		//<![CDATA[
		
			function basename (path) { return path.replace( /.*\//, "" ); }
	
			var winimg=null;
			function ps_imagemanager_popup(imgurl,title,w,h) {
				lpos=(screen.width)?(screen.width-w)/2:100;
				tpos=(screen.height)?(screen.height-h)/2:100;
				settings='width='+w+',height='+h+',top='+tpos+',left='+lpos+',scrollbars=no,location=no,directories=no,status=no,menubar=no,toolbar=no,resizable=yes';
				winimg=window.open('about:blank','imagemanagerpopup',settings);
	
				var doc = '';
				doc += '<html><head>';
				doc += '<title>' + title + ' - ' + basename(imgurl) + '(' + w + 'x' + h +')</title>';
				doc += '<style type="text/css"><!-- body { margin:0px; padding:0px; } --></style>';
				doc += '</head>';
				doc += '<body onload="self.focus();">';
				doc += '<img style="cursor:pointer;" src="' + imgurl + '" title="' + title + '" onclick="self.close();"/>';
				doc += '</body></html>';
				
				winimg.document.writeln(doc);
				winimg.document.close();
			}	
			
		//]]>
		</script>
<script language="javascript" type="text/javascript"><!--
var podPressBackendURL = "http://thehookandsling.podbean.com/wp-content/plugins/podpress/podpress_backend.php?";
--></script>
<script language="javascript" type="text/javascript" src="http://thehookandsling.podbean.com/wp-content/plugins/podpress/podpress.js"></script>
<link rel="stylesheet" href="http://thehookandsling.podbean.com/wp-content/plugins/podpress/podpress.css" type="text/css" />
<style type="text/css">
		.PSR_stars {
		  height: 15px;
		  overflow: hidden;
		  padding: 0;
		  margin: 0;
		}
		* html .PSR_stars .star {
			display: block;
			position: absolute;
			height: 0;
			width: 0;
		}
		.PSR_stars input {
			display: none;
		}
		.PSR_no_star, .PSR_half_star, .PSR_full_star {
		  display: block;
		  float: left;
		  width: 17px;
		  height: 15px;
		  text-indent: -1000em;
		  background-repeat: no-repeat;
		}
		.PSR_no_star {
		  background-image: url(/wp-content/systemplugins/post-star-rating/img/stars/no_star.gif);
		}
		.PSR_full_star {
		  background-image: url(/wp-content/systemplugins/post-star-rating/img/stars/full_star.gif);
		}
		.PSR_half_star {
		  background-image: url(/wp-content/systemplugins/post-star-rating/img/stars/half_star.gif);
		}
		.PSR_votes {
			padding-left: .5em;
		}
		.full, .half, .no{
		}

		a.PSR_stars_img:link {text-decoration:none}
		a.PSR_stars_img:visited {text-decoration:none}
		a.PSR_stars_img:hover {text-decoration:none}
		a.PSR_stars_img:active {text-decoration:none}
		</style>
<script type="text/javascript">
		<!--
		function PSR_star_over(obj, star_number) {
			var psr=obj.parentNode;
			var as=psr.getElementsByTagName('label');
			for (i=0;i<star_number;++i) {
				as[i].className = 'PSR_full_star';
			}
			for (;i<as.length;++i) {
				as[i].className = 'PSR_no_star';
			}
		}
		function PSR_star_out(obj) {
			var as=obj.getElementsByTagName('label');
			var as2=obj.getElementsByTagName('span');
			for (i=0;i<as.length;++i) {
				if(as2[i].className == 'full'){
					as[i].className = 'PSR_full_star';
				}else if(as2[i].className == 'half'){
					as[i].className = 'PSR_half_star';
				}else{
					as[i].className = 'PSR_no_star';
				}
			}
		}
		//-->
		</script>
	<script type="text/javascript">
	function spamBam_storeSession(sessionID) {
		spamBam_createCookie('spambam_session',sessionID,7)
	}
	function spamBam_createCookie(name,value,days) {
		if (days) {
			var date = new Date();
			date.setTime(date.getTime()+(days*24*60*60*1000));
			var expires = "; expires="+date.toGMTString();
		}
		else var expires = "";
		document.cookie = name+"="+value+expires+"; path=/";
	}

	function spamBam_readCookie(name) {
		var nameEQ = name + "=";
		var ca = document.cookie.split(';');
		for(var i=0;i < ca.length;i++) {
			var c = ca[i];
			while (c.charAt(0)==' ') c = c.substring(1,c.length);
			if (c.indexOf(nameEQ) == 0) return c.substring(nameEQ.length,c.length);
		}
		return null;
	}

	function spamBam_eraseCookie(name) {
		spamBam_createCookie(name,"",-1);
	}
	</script>
	
<title>thehookandsling  </title>

</head>



<body>
<div id='pb_controlarea'>
<table id='pb_controlstrip' cellpadding='0' cellspacing='0'>
<tr valign='middle'>            
	<td id='pb_controlstrip_userpic'><a href="http://www.podbean.com"><img src="/images/small-logo.jpg" alt="Podbean Podcast Site" title="Podbean Podcast Site" /></a></td>
    <td id='pb_controlstrip_category'>
		<span id='pb_controlstrip_whitebold12'>Category :&nbsp;&nbsp;</span>
				<a href="http://www.podbean.com/podcasts?s=hit&c=music&t=month&p=1">Music</a>&nbsp;&nbsp;
	</td>
	<td id='pb_controlstrip_tag'>
		<span id='pb_controlstrip_whitebold12'>Tags :&nbsp;&nbsp;</span>
		<a href="http://www.podbean.com/search?k=tag&v=london" rel="tag">london</a>&nbsp;&nbsp;&nbsp;<a href="http://www.podbean.com/search?k=tag&v=dj" rel="tag">dj</a>&nbsp;&nbsp;&nbsp;<a href="http://www.podbean.com/search?k=tag&v=soul" rel="tag">soul</a>&nbsp;&nbsp;&nbsp;<a href="http://www.podbean.com/search?k=tag&v=funk" rel="tag">funk</a>&nbsp;&nbsp;&nbsp;<a href="http://www.podbean.com/search?k=tag&v=clubs" rel="tag">clubs</a>&nbsp;&nbsp;&nbsp;<a href="http://www.podbean.com/search?k=tag&v=60s" rel="tag">60s</a>&nbsp;&nbsp;&nbsp;<a href="http://www.podbean.com/search?k=tag&v=northernsoul" rel="tag">northernsoul</a>&nbsp;&nbsp;&nbsp;<a href="http://www.podbean.com/search?k=tag&v=deepfunk" rel="tag">deepfunk</a>&nbsp;&nbsp;&nbsp;<a href="http://www.podbean.com/search?k=tag&v=music" rel="tag">music</a>&nbsp;&nbsp;&nbsp;<a href="http://www.podbean.com/search?k=tag&v=70s" rel="tag">70s</a>&nbsp;&nbsp;&nbsp;	</td>
	<td id='pb_controlstrip_register'>
		&nbsp;
	</td>
</tr>
</table>
</div>


<div id="container">



<div id="sitename">



<h1><a href="http://thehookandsling.podbean.com">thehookandsling</a></h1>

<h2>100% SOUL AND FUNK MUSIC</h2>



</div>







<div id="mainmenu">
<ul class="level1">
<li class="current"><a href="http://thehookandsling.podbean.com">Home</a></li>
<li class='level1'><a href='http://thehookandsling.podbean.com/about/' title='About The Hook &#038; Sling'>About The Hook & Sling</a></li>
<li class='level1'><a href='http://thehookandsling.podbean.com/for-your-eyes-only/' title='For Your Eyes Only'>For Your Eyes Only</a></li>
<li class='level1'><a href='http://thehookandsling.podbean.com/gallery/' title='Gallery'>Gallery</a></li>
<li class='level1'><a href='http://thehookandsling.podbean.com/events/' title='Forthcoming Events'>Forthcoming Events</a></li>
<li class='level1'><a href='http://thehookandsling.podbean.com/disclaimer/' title='Disclaimer'>Disclaimer</a></li>
</ul></div>



<div id="wrap"><div id="leftside">


<ul>
		<li id="text-1" class="widget widget_text">			<h2 class="widgettitle">Visitors</h2>
							<div class="textwidget"><script type="text/javascript" src="http://feedjit.com/map/?bc=ffffff&amp;tc=494949&amp;brd1=336699&amp;lnk=494949&amp;hc=336699&amp;dot=ff0000"></script><noscript><a href="http://feedjit.com/">Feedjit Live Blog Stats</a></noscript>
</div>
					</li>
<li><h2>Feeds</h2>
			<ul>
			<li><a href="http://thehookandsling.podbean.com/feed/" title="Syndicate this site using RSS 2.0"><img src="http://www.podbean.com/wp-admin/images/rss_podcast.png" alt="rss2 podcast" /></a></li>
            <li><a href="http://thehookandsling.podbean.com/feed/atom/" title="Syndicate this site using ATOM"><img src="http://www.podbean.com/wp-admin/images/atom.gif" alt="atom feed" /></a></li>
			<li><a href="http://thehookandsling.podbean.com/comments/feed/" title="The latest comments to all posts in RSS"><img src="http://www.podbean.com/wp-admin/images/rsscomments.png" alt="rss2 comments" /></a></li>

						</ul>
</li>
   <li><form method="get" id="searchform" action="http://thehookandsling.podbean.com">
<div><input id="searchbox" type="text" value="" name="s" alt="Enter search text"/>
<input type="submit" id="searchbutton" value="Search" alt="Submit for search results"/>
</div>
</form>
</li>
		<li id="categories" class="widget widget_categories">			<h2 class="widgettitle">Categories</h2>
			<ul>
				<li><a href="http://thehookandsling.podbean.com/category/articles/" title="View all posts filed under articles">articles</a>
</li>
	<li><a href="http://thehookandsling.podbean.com/category/events/" title="View all posts filed under events">events</a>
</li>
	<li><a href="http://thehookandsling.podbean.com/category/guest-mixes/" title="View all posts filed under Guest Mixes">Guest Mixes</a>
</li>
	<li><a href="http://thehookandsling.podbean.com/category/interviews/" title="View all posts filed under interviews">interviews</a>
</li>
	<li><a href="http://thehookandsling.podbean.com/category/mixes/" title="View all posts filed under mixes">mixes</a>
</li>
	<li><a href="http://thehookandsling.podbean.com/category/playlists/" title="View all posts filed under playlists">playlists</a>
</li>
	<li><a href="http://thehookandsling.podbean.com/category/uncategorized/" title="View all posts filed under Uncategorized">Uncategorized</a>
</li>
	<li><a href="http://thehookandsling.podbean.com/category/videos/" title="View all posts filed under videos">videos</a>
</li>
			</ul>
		</li>
<li id="recent-posts"><h2>Recent Posts</h2>
<ul>
	<li><a href='http://thehookandsling.podbean.com/2009/11/24/hoppin%e2%80%99-john-presents-sisters-with-soul-part-1/' title='Hoppin’ John Presents Sisters With Soul (Part 1)'>Hoppin’ John Presents Sisters With Soul (Part 1)</a></li>
	<li><a href='http://thehookandsling.podbean.com/2009/11/20/mr-double-down-presents-the-soul-spin/' title='Mr Double Down Presents The Soul Spin'>Mr Double Down Presents The Soul Spin</a></li>
	<li><a href='http://thehookandsling.podbean.com/2009/11/16/marva-whitney-osaka-monaurail-the-impellers-the-100-club-141109-%e2%80%93-review/' title='Marva Whitney / Osaka Monaurail / The Impellers @ The 100 Club (14/11/09) – Review'>Marva Whitney / Osaka Monaurail / The Impellers @ The 100 Club (14/11/09) – Review</a></li>
	<li><a href='http://thehookandsling.podbean.com/2009/11/13/the-ideals-%e2%80%93-the-gorilla-cortland-records-dantes-reunion/' title='The Ideals – The Gorilla - Cortland Records / Dantes Reunion'>The Ideals – The Gorilla - Cortland Records / Dantes Reunion</a></li>
	<li><a href='http://thehookandsling.podbean.com/2009/11/09/the-popcorn-king-presents-street-beats/' title='The Popcorn King Presents Street Beats'>The Popcorn King Presents Street Beats</a></li>
	<li><a href='http://thehookandsling.podbean.com/2009/11/02/mr-double-down-the-popcorn-king-present-the-sunday-soul-sessions/' title='Mr Double Down &#038; The Popcorn King Present The Sunday Soul Sessions'>Mr Double Down &#038; The Popcorn King Present The Sunday Soul Sessions</a></li>
	<li><a href='http://thehookandsling.podbean.com/2009/10/26/guest-mix-tony-c-presents-give-a-damn/' title='Guest Mix - Tony C Presents Give A Damn'>Guest Mix - Tony C Presents Give A Damn</a></li>
	<li><a href='http://thehookandsling.podbean.com/2009/10/20/the-popcorn-king-mr-double-down-present-can-we-get-a-soul-clap/' title='The Popcorn King &#038; Mr Double Down Present Can We Get A Soul Clap?'>The Popcorn King &#038; Mr Double Down Present Can We Get A Soul Clap?</a></li>
	<li><a href='http://thehookandsling.podbean.com/2009/10/13/guest-mix-%e2%80%93-ed-meme-the-impellers-%e2%80%93-ed-meme%e2%80%99s-mixed-platter/' title='Guest Mix – Ed Meme (The Impellers) – Ed Meme’s Mixed Platter'>Guest Mix – Ed Meme (The Impellers) – Ed Meme’s Mixed Platter</a></li>
	<li><a href='http://thehookandsling.podbean.com/2009/10/07/guest-mix-larry-grogan-funky16corners-tlc/' title='Guest Mix - Larry Grogan (Funky16Corners) - TLC'>Guest Mix - Larry Grogan (Funky16Corners) - TLC</a></li>
</ul>
</li>
		<li id="archives" class="widget widget_archives">			<h2 class="widgettitle">Archives</h2>
			<ul>
				<li><a href='http://thehookandsling.podbean.com/2009/11/' title='November 2009'>November 2009</a></li>
	<li><a href='http://thehookandsling.podbean.com/2009/10/' title='October 2009'>October 2009</a></li>
	<li><a href='http://thehookandsling.podbean.com/2009/09/' title='September 2009'>September 2009</a></li>
	<li><a href='http://thehookandsling.podbean.com/2009/08/' title='August 2009'>August 2009</a></li>
	<li><a href='http://thehookandsling.podbean.com/2009/07/' title='July 2009'>July 2009</a></li>
	<li><a href='http://thehookandsling.podbean.com/2009/06/' title='June 2009'>June 2009</a></li>
	<li><a href='http://thehookandsling.podbean.com/2009/05/' title='May 2009'>May 2009</a></li>
	<li><a href='http://thehookandsling.podbean.com/2009/04/' title='April 2009'>April 2009</a></li>
	<li><a href='http://thehookandsling.podbean.com/2009/03/' title='March 2009'>March 2009</a></li>
	<li><a href='http://thehookandsling.podbean.com/2009/02/' title='February 2009'>February 2009</a></li>
	<li><a href='http://thehookandsling.podbean.com/2009/01/' title='January 2009'>January 2009</a></li>
	<li><a href='http://thehookandsling.podbean.com/2008/12/' title='December 2008'>December 2008</a></li>
	<li><a href='http://thehookandsling.podbean.com/2008/11/' title='November 2008'>November 2008</a></li>
	<li><a href='http://thehookandsling.podbean.com/2008/10/' title='October 2008'>October 2008</a></li>
	<li><a href='http://thehookandsling.podbean.com/2008/09/' title='September 2008'>September 2008</a></li>
	<li><a href='http://thehookandsling.podbean.com/2008/08/' title='August 2008'>August 2008</a></li>
	<li><a href='http://thehookandsling.podbean.com/2008/07/' title='July 2008'>July 2008</a></li>
	<li><a href='http://thehookandsling.podbean.com/2008/06/' title='June 2008'>June 2008</a></li>
	<li><a href='http://thehookandsling.podbean.com/2008/05/' title='May 2008'>May 2008</a></li>
	<li><a href='http://thehookandsling.podbean.com/2008/04/' title='April 2008'>April 2008</a></li>
	<li><a href='http://thehookandsling.podbean.com/2008/03/' title='March 2008'>March 2008</a></li>
	<li><a href='http://thehookandsling.podbean.com/2008/02/' title='February 2008'>February 2008</a></li>
	<li><a href='http://thehookandsling.podbean.com/2008/01/' title='January 2008'>January 2008</a></li>
	<li><a href='http://thehookandsling.podbean.com/2007/12/' title='December 2007'>December 2007</a></li>
	<li><a href='http://thehookandsling.podbean.com/2007/11/' title='November 2007'>November 2007</a></li>
	<li><a href='http://thehookandsling.podbean.com/2007/10/' title='October 2007'>October 2007</a></li>
	<li><a href='http://thehookandsling.podbean.com/2007/09/' title='September 2007'>September 2007</a></li>
			</ul>
		</li>
<li id="google-search" class="widget widget_gsearch"><h2 class="widgettitle"></h2>
<div style="margin-top:5px;text-align:center;"><form id="gsearch" action="http://www.google.com/search" method="get" onsubmit="this.q.value='site:thehookandsling.podbean.com '+this.rawq.value"><input name="rawq" size="20" /><input type="hidden" name="q" value="" /><input value="Google Search" name="submit" type="submit" /></form></div></li>

</ul>
</div>





<!-- Right Sidebar Template -->

<div id="rightside">
<ul>

<table class="profileinfo" width="100%" cellpadding="0" cellspacing="0" align="center">
<tr height=5></tr>
<tr><td align="center">
	<table width="155px" border=0 cellpadding="2" cellspacing="0">
	<tr><td align="left"><img src="http://thehookandsling.podbean.com/mf/web/42wxa/2007-03-11T20_42_33-07_00.jpg" width=150 height=150 /></td></tr>
		<tr><td align="left"><b>Channel Visits:</b>&nbsp;92735</td></tr>
		</table>
</td></tr>
<tr height=6></tr>
<tr><td align="center">
<div id="profilebottomaction">
	<table width="155px" border=0 cellpadding="1" cellspacing="0">
	<tr>
		<td align="left" width="70px">
		<img src="http://www.podbean.com/images/viewprofile.gif"  style="margin:4px 4px -4px 0px" /><a href="http://www.podbean.com/user-profile-view?uname=thehookandsling" target="_blank">Profile</a>
		</td>
		<td align="left" width="85px">
		<img src="http://www.podbean.com/images/blueicon_send_message.gif" style="margin:4px 4px -4px 0px" /><a href="http://www.podbean.com/podbean-mailbox?pageview=compose&cid=21854" target="_blank">Contact</a>
		</td>
	</tr>
	<tr>
		<td align="left" width="70px">
		<img src="http://www.podbean.com/images/blueicon_share_channel.gif"  style="margin:4px 4px -4px 0px" /><a href="http://www.podbean.com/mail?cid=21854" target="_blank">Share</a>
		</td>
				<td align="left" width="85px">
		<img src="http://www.podbean.com/images/blueicon_add_subscription.gif"  style="margin:4px 4px -4px 0px" /><a href="http://www.podbean.com/podcast-add-my-subscription?pid=23533" target="_blank">Subscribe</a>
		</td>
			</tr>
	    <tr height=5></tr>
	<tr>
		<td align="left" colspan=2>
		<img src="http://www.podbean.com/images/player_icon_20x20.gif" style="margin:4px 4px -4px 0px" /><a href="http://www.podbean.com/podcast-players?cid=21854" target="_blank">Embeddable Player</a>
		</td>
	</tr>
    	</table>
</div>


</td></tr>
<tr height=5></tr>
</table>
<br />

		<li id="text-2" class="widget widget_text">			<h2 class="widgettitle">Follow Us On Twitter</h2>
							<div class="textwidget"><div id="twtr-profile-widget"></div>
<script src="http://widgets.twimg.com/j/1/widget.js"></script>
<link href="http://widgets.twimg.com/j/1/widget.css" type="text/css"  
rel="stylesheet">
<script>
new TWTR.Widget({
   profile: true,
   id: 'twtr-profile-widget',
   loop: true,
   width: 150,
   height: 100,
   theme: {
     shell: {
       background: '#3082af',
       color: '#ffffff'
     },
     tweets: {
       background: '#ffffff',
       color: '#444444',
       links: '#1985b5'
     }
   }
}).render().setProfile('Thehookandsling').start();
</script></div>
					</li>
		<li id="text-3" class="widget widget_text">			<h2 class="widgettitle">Follow Us On Facebook</h2>
							<div class="textwidget"><a href="http://www.facebook.com/people/Hookandsling-Chichester/100000374312980"><img src="http://www.divshare.com/img/9270518-ecf"></a></div>
					</li>
<li id="calendar" class="widget widget_calendar"><h2 class="widgettitle">Calendar</h2>
<ul><table id="wp-calendar">
		<caption>November 2009</caption>
		<thead>
		<tr>
		<th abbr="Monday" scope="col" title="Monday">M</th>
		<th abbr="Tuesday" scope="col" title="Tuesday">T</th>
		<th abbr="Wednesday" scope="col" title="Wednesday">W</th>
		<th abbr="Thursday" scope="col" title="Thursday">T</th>
		<th abbr="Friday" scope="col" title="Friday">F</th>
		<th abbr="Saturday" scope="col" title="Saturday">S</th>
		<th abbr="Sunday" scope="col" title="Sunday">S</th>
		</tr>
		</thead>

		<tfoot>
		<tr>
		<td abbr="October" colspan="3" id="prev"><a href="http://thehookandsling.podbean.com/2009/10/" title="View posts for October 2009">&laquo; Oct</a></td>
		<td class="pad">&nbsp;</td>
		<td colspan="3" id="next" class="pad">&nbsp;</td>
		</tr>
		</tfoot>

		<tbody>
		<tr>
		<td colspan="6" class="pad">&nbsp;</td><td>1</td>
	</tr>
	<tr>
		<td><a href="http://thehookandsling.podbean.com/2009/11/02/" title="Mr Double Down &#038; The Popcorn King Present The Sunday Soul Sessions">2</a></td><td>3</td><td>4</td><td>5</td><td>6</td><td>7</td><td>8</td>
	</tr>
	<tr>
		<td><a href="http://thehookandsling.podbean.com/2009/11/09/" title="The Popcorn King Presents Street Beats">9</a></td><td>10</td><td>11</td><td>12</td><td><a href="http://thehookandsling.podbean.com/2009/11/13/" title="The Ideals – The Gorilla - Cortland Records / Dantes Reunion">13</a></td><td>14</td><td>15</td>
	</tr>
	<tr>
		<td><a href="http://thehookandsling.podbean.com/2009/11/16/" title="Marva Whitney / Osaka Monaurail / The Impellers @ The 100 Club (14/11/09) – Review">16</a></td><td>17</td><td>18</td><td>19</td><td><a href="http://thehookandsling.podbean.com/2009/11/20/" title="Mr Double Down Presents The Soul Spin">20</a></td><td>21</td><td>22</td>
	</tr>
	<tr>
		<td>23</td><td><a href="http://thehookandsling.podbean.com/2009/11/24/" title="Hoppin’ John Presents Sisters With Soul (Part 1)">24</a></td><td>25</td><td id="today">26</td><td>27</td><td>28</td><td>29</td>
	</tr>
	<tr>
		<td>30</td>
		<td class="pad" colspan="6">&nbsp;</td>
	</tr>
	</tbody>
	</table></ul></li>
		<li id="subscribe" class="widget widget_subscribe">				<h2 class="widgettitle">Subscribe</h2>
		<ul>
											<li style="margin-bottom: 10px;"><a href="itpc://thehookandsling.podbean.com/feed"><img alt="add to iTunes" title="add to iTunes" src="http://www.podbean.com/images/add-to-itunes.gif" border="0"></a></li>
				<li style="margin-bottom: 10px;"><a href="zune://subscribe/?thehookandsling=http://thehookandsling.podbean.com/feed"><img alt="add to zune" title="add to zune" src="http://www.podbean.com/images/add-to-zune.jpg" border="0"></a></li>
				<li style="margin-bottom: 10px;"><a href="http://www.podnova.com/add.srf?url=http://thehookandsling.podbean.com/feed"><img alt="add to podnova" title="add to podnova" src="http://www.podbean.com/images/add-to-podnova.gif" border="0"></a></li>
				<li style="margin-bottom: 10px;"><a href="http://www.newsgator.com/ngs/subscriber/subext.aspx?url=http://thehookandsling.podbean.com/feed"><img alt="add to newsgator" title="add to newsgator" src="http://www.podbean.com/images/add-to-newsgator.gif" border="0"></a></li>
				<li style="margin-bottom: 10px;"><a href="http://www.netvibes.com/subscribe.php?url=http://thehookandsling.podbean.com/feed"><img alt="add to netvibes" title="add to netvibes" src="http://www.podbean.com/images/add-to-netvibes.gif" border="0"></a></li>
				<li style="margin-bottom: 10px;"><a href="http://www.pageflakes.com/subscribe.aspx?url=http://thehookandsling.podbean.com/feed"><img alt="add to pageflakes" title="add to pageflakes" src="http://www.podbean.com/images/add-to-pageflakes.gif" border="0"></a></li>
				<li style="margin-bottom: 10px;"><a href="http://add.my.yahoo.com/rss?url=http://thehookandsling.podbean.com/feed"><img alt="add to yahoo" title="add to yahoo" src="http://www.podbean.com/images/add-to-yahoo.gif" border="0"></a></li>
				<li style="margin-bottom: 10px;"><a href="http://fusion.google.com/add?feedurl=http://thehookandsling.podbean.com/feed"><img alt="add to google" title="add to google" src="http://www.podbean.com/images/add-to-google.gif" border="0"></a></li>
					</ul>
		</li>
	<li id="linkcat-22550"><h2>Links</h2>
	<ul>
<li><a href="http://apyrexscholar.blogspot.com/">a pyrex scholar</a></li>
<li><a href="http://www.raresoulvinyl.co.uk">anglo american records</a></li>
<li><a href="http://www.beatinrhythm.com/">beatin&#039; rhythm records</a></li>
<li><a href="http://www.myspace.com/betterdaysfreeyoursoul">better days</a></li>
<li><a href="http://boldsoulbrother.com/">bold soul brother</a></li>
<li><a href="http://cogswell.wordpress.com/">cogswell - the little boozy review</a></li>
<li><a href="http://cratedig.blogspot.com/">crate dig</a></li>
<li><a href="http://www.dangradio.com">dang radio.com</a></li>
<li><a href="http://www.diddywah.blogspot.com/">diddy wah</a></li>
<li><a href="http://www.discjockeynyc.com/">disc jockey NYC</a></li>
<li><a href="http://endlessmixtape.blogspot.com">endless mixtape</a></li>
<li><a href="http://fleamarketfunk.wordpress.com/">flea market funk</a></li>
<li><a href="http://www.fryer-mantis.co.uk">fryer-mantis</a></li>
<li><a href="http://fufusnax.wordpress.com/">fufu snax</a></li>
<li><a href="http://fufustew.wordpress.com/">fufu stew (vincent the soul chef)</a></li>
<li><a href="http://www.funk45.com">funk45.com</a></li>
<li><a href="http://fusion45.com/">fusion 45</a></li>
<li><a href="http://www.galacticfractures.com">galacticfractures.com</a></li>
<li><a href="http://www.giantstep.net/">giant step </a></li>
<li><a href="http://www.hackneycollieryband.co.uk/">hackney colliery band</a></li>
<li><a href="http://www.heavysoulbrutha.com/">heavysoulbrutha&#039;s put the needle on the record</a></li>
<li><a href="http://indangerousrhythm.blogspot.com/">in dangerous rhythm - a soulful diary</a></li>
<li><a href="http://itsgreatshakes.blogspot.com/">it&#039;s great shakes</a></li>
<li><a href="http://www.jazzmanrecords.co.uk">jazzman records</a></li>
<li><a href="http://www.raresoulman.co.uk">john manship records</a></li>
<li><a href="http://keepingsoulalive.blogspot.com/">keeping soul alive</a></li>
<li><a href="http://funky16corners.wordpress.com/">larry grogan&#039;s funky16corners</a></li>
<li><a href="http://latadezinc.blogspot.com/">lata de zinc</a></li>
<li><a href="http://mixdiggerz.blogspot.com/">mix diggerz</a></li>
<li><a href="http://www.ourunclesam.com/">our Uncle Sam</a></li>
<li><a href="http://www.parkdalefunk.com/">parkdale funk</a></li>
<li><a href="http://planetmondo.blogspot.com/">planet mondo</a></li>
<li><a href="http://faq.podbean.com/podcast-faq-index/">podbean FAQ</a></li>
<li><a href="http://news.podbean.com">podbean News</a></li>
<li><a href="http://www.recordsbymail.com/">recordsbymail.com</a></li>
<li><a href="http://www.rocknrollsoul.co.uk">rock &#039;n&#039; roll soul</a></li>
<li><a href="http://www.sausage-records.com/">sausage Records</a></li>
<li><a href="http://www.secondlinesocial.com/">second line social</a></li>
<li><a href="http://shindiggit.blogspot.com/">shindiggit!</a></li>
<li><a href="http://www.soulgeneration.co.uk/">soul generation</a></li>
<li><a href="http://soulpersuasion.blogspot.com/">soul persuasion</a></li>
<li><a href="http://soulpsycho.blogspot.com/">soul psychadelicyde </a></li>
<li><a href="http://www.soulspectrum.co.uk/">soul spectrum</a></li>
<li><a href="http://souledonmusic.blogspot.com/">souled on music</a></li>
<li><a href="http://stepfatherofsoul.blogspot.com/">stepfatherofsoul</a></li>
<li><a href="http://suspect.me.uk/">suspect.me</a></li>
<li><a href="http://redkelly2.blogspot.com/">the &#039;A&#039; side</a></li>
<li><a href="http://redkelly.blogspot.com/">the &#039;B&#039; side</a></li>
<li><a href="http://www.blushorganisation.co.uk">the blush organisation</a></li>
<li><a href="http://devildick.blogspot.com/">the devils music</a></li>
<li><a href="http://www.myspace.com/thehookandsling">the hook and sling</a></li>
<li><a href="http://www.myspace.com/theimpellers">the impellers</a></li>
<li><a href="http://therightsideoffunky.wordpress.com/">the right side of funky</a></li>
<li><a href="http://thetwoteam.wordpress.com./">the two team</a></li>
<li><a href="http://thisistomorrow.blogspot.com">this is tomorrow</a></li>
<li><a href="http://thisistomorrowtv.wordpress.com/">this is tomorrow tv</a></li>
<li><a href="http://www.ticklinthepickle.co.uk/">ticklin&#039; the pickle</a></li>
<li><a href="http://trunk-of-funk.blogspot.com/">trunk of F.U.N.K</a></li>
<li><a href="http://universoulproductions.wordpress.com/">univerSOUL productions</a></li>
<li><a href="http://versionsgalore.blogspot.com/">versions galore</a></li>
<li><a href="http://voodoofunk.blogspot.com">voodoofunk</a></li>
<li><a href="http://www.witchsbrew.co.uk/">witchsbrew.co.uk</a></li>
<li><a href="http://www.zani.co.uk">zani</a></li>

	</ul>
</li>
</ul>
</div>
<div id="content">
	<div class="page">
		<h2 class="center">Error 404 - Not Found</h2>
	</div>
</div>

</div>
<div class="clearingdiv">&nbsp;</div>
</div>

<div id="footer">

<a href="http://thehookandsling.podbean.com">thehookandsling</a> is powered by <a href="http://www.podbean.com">Podbean.com</a> | 
Design by <a href="http://andreasviklund.com">Andreas Viklund</a> | 
Ported by <a href="http://webgazette.co.uk">Ainslie Johnson</a>  
<!-- | xyz translation by <a href="your url">your name</a> -->
</div>

<!-- end_of_podbean_footer --> 
<!-- Start Quantcast tag -->
<script type="text/javascript">
_qoptions={
qacct:"p-91lXzPDEtkPDc"
};
</script>
<script type="text/javascript" src="http://edge.quantserve.com/quant.js"></script>
<noscript>
<a href="http://www.quantcast.com/p-91lXzPDEtkPDc" target="_blank"><img src="http://pixel.quantserve.com/pixel/p-91lXzPDEtkPDc.gif" style="display: none;" border="0" height="1" width="1" alt="Quantcast"/></a>
</noscript>
<!-- End Quantcast tag -->

</body>

</html>