HTTP/1.1 200 OK
Cache-control: no-cache="set-cookie"
Content-Type: text/html;charset=utf-8
Date: Thu, 08 Mar 2012 21:43:57 GMT
Server: nginx
Set-Cookie: AWSELB=F7A31B530A204BA30F3F36CDDFD82C4C072C2E23FE94BDF825D46AA9EC7B6C8C6F4A1FC7E4E859145AF666A108BC3F679592D8BE04900DC9B0C2CF70B4CA57DAB8A1EC429E;PATH=/;MAX-AGE=60
Vary: Accept-Encoding
Connection: Close

















<html lang="en">


<head>
	<meta property="fb:admins" content="706732041"/>
	<meta property="fb:app_id" content="245872525504602"/>
    <script src="http://code.jquery.com/jquery-latest.js" type="text/javascript"></script>
    <script src="/javascript/jquery.bgiframe.js"
            type="text/javascript"></script>

    
        
    









    <link rel="shortcut icon" href="http://www.hillbillyreport.org/upload/HBR3.jpg" type="image/x-icon" />

<link rel="stylesheet" href="/stylesheets/COPY040409.css" type="text/css">
<link rel="stylesheet" href="/stylesheets/comments.css" type="text/css">
<link rel="alternate" type="application/rss+xml" title="Hillbilly Report"
    href="http://www.hillbillyreport.org/rss/rss2.xml" />
<title>
    Hillbilly Report
    
        
    
</title>










<script src="/javascript/prototype.js" type="text/javascript"></script>


<script>
//-- SoapBlox JavaScript
//-- 7/30/2007 (C)

var baseUrl = '/';
//-- SoapBlox JavaScript
//-- 7/30/2007 (C)

	var req;
	var which;
	var debug = false;
	var commentId = "";
	var diaryId = "";
	var previewTitle = "";
	var previewText = "";
	var postingComment = false;
	var canPost = false;
	var previewingComment = false;
	var hasError = false;
	var buttonState;
	
	function hover(id, imageLoc) {
		// alert(imageLoc);
		document.images[id].src = imageLoc;
	}

	// makes a comment appear when someone clicks "post a comment" or "reply"
	// id - the commentId (0 if "root"), dId - diaryId
	function makeCommentAppear(id, dId) {

		var tempTitle = "";
		var tempText = "";
	
		// if this isn't empty, we were trying to perviously post a comment
		// therefore, we need to clean out all the html in the previous spot
		// so we don't create "nodeLists" for postCommentTextArea and Title
		if (commentId != "") {
			// get the current "postcommenter" element
			var oldElem = document.getElementById('postcomment' + commentId);
	
			if (oldElem) {
				// this will store whatever we might have had before
				if (document.forms['rateForm'].elements['postCommentTitle']) {
					tempTitle = document.forms['rateForm'].elements['postCommentTitle'].value;
				}	
				if (document.forms['rateForm'].elements['postCommentTextArea']) {
					tempText = document.forms['rateForm'].elements['postCommentTextArea'].value;
				}
			
				// clear out the old HTML, so we don't create nodeLists
				oldElem.innerHTML = "";
			}
		}
	
		hideArea("post");

		// store the values globally for what we're currently looking at
	    commentId = id;
	    diaryId = dId;
	    
	    var elementName = 'postcomment' + id;
	    
	    // make sure the element is hidden
		Element.hide(elementName);

		// set the data in it		
	    document.getElementById(elementName).innerHTML = document.getElementById("contentHolder").innerHTML;
		document.forms['rateForm'].elements['postCommentTitle'].value = tempTitle;
		document.forms['rateForm'].elements['postCommentTextArea'].value = tempText;
	
		// make it slide down, take half a second, scaleFrom 3 to avoid "stutter" in IE
		Effect.SlideDown(elementName, { duration: 0.5, scaleFrom: 3});
		window.setTimeout("document.forms['rateForm'].elements['postCommentTitle'].focus()", 501);
		
	    postingComment = true;
	    // since we're starting a new preview cycle, we're going to need
	    // to use the slide down effect.  This ensures that
	    previewingComment = false;

	    var objDiv = document.getElementById(elementName);
		objDiv.scrollTop = objDiv.scrollHeight;
	}

	// what we do when someone hits cancel
	function cancelPost() {

		var cTextElem = document.forms['rateForm'].elements['postCommentTextArea'];
		var cTitleElem = document.forms['rateForm'].elements['postCommentTitle'];
		
		if ((cTextElem && cTextElem.value != "")
				|| (cTitleElem && cTitleElem.value != ""))
		{
			// if the don't want to cancel--stop.
			if (!confirm("Cancel this comment?")) {
				return;
			}
		}

		hideArea("cancel");
		// we no longer clear this out so in makeCommentAppear we can see if we have to clean
		// out some hidden HTML
		//commentId = "";
		diaryId = "";
		previewText = "";
		previewTitle = "";
		cTextElem.value = "";
		cTitleElem.value = "";
		previewingComment = false;	
		postingComment = false;
	}
	
	// this is the safari default button hack, where we use onfocus to determine what mode we're in
	function setButtonState(theValue) {
		buttonState = theValue;
	}

	// it's how we post a comment!
	function submitForm(theForm) {
	
		// alert(buttonState + " " + previewingComment);
	
		// stop the "enter in the subject" bug
		if (buttonState == "post" && !previewingComment
		 		|| buttonState == "post" && previewingComment && !canPost) {
			previewComment(theForm);
			return false;
		}
		

		var theForm = document.forms['rateForm'];	
		theForm.action = baseUrl + "postComment.do";
		theForm.elements['replyParentCommentId'].value = commentId;

		if (commentId == 0) {
			theForm.elements['diaryId'].value = diaryId;	
		}
		else {
			theForm.elements['commentId'].value = commentId;	

		}
		
		theForm.elements['replyDiaryId'].value = diaryId;	
		theForm.elements['submitType'].value = "post";	
		
		// alert("yo" + theForm.elements['submitType']);
		theForm.method = "POST";
		theForm.submit();
	}

	// trims a string
	function trim(str) {     
		if(!str || typeof str != 'string') {
			return null;     
		}
			
		return str.replace(/^[\s]+/,'').replace(/[\s]+$/,'').replace(/[\s]{2,}/,' '); 
		
	}

	function previewComment(theForm) {
	
		// if (tinyMCE) {
			// tinyMCE.triggerSave();
		// }
		
		// alert(baseUrl);

		var url = baseUrl + "ajaxPreviewComment.do";
		var errorDiv = "errorcomment" + commentId;
		
		// hide any error we might have
		if (hasError) {
			Element.hide(errorDiv);
		}
			
		var cTitleElem = document.forms['rateForm'].elements["postCommentTitle"];
		var cTextElem =  document.forms['rateForm'].elements["postCommentTextArea"];
	
		
		previewTitle = cTitleElem.value;
		previewText = cTextElem.value;
	
	    // trim it so we remove the white sapces
	    previewTitle = trim(previewTitle);

	    // if we have nothing, set the error
	    if (previewTitle == null || previewTitle == "") {
			Effect.Appear(errorDiv, { duration: 0.5 });
			disallowPost();
			hasError = true;
	    	return;
	    }

	    // if we get this far we don't have an error!
	    hasError = false;
	    
	    // apparently using "escape" funcation messes with utf-8 so we just explicity
	    // replace newlines with their url-encoding equavilent.
	    previewText = escape(previewText); 
	    
	    previewText = previewText.replace(/\%u201C/ig, "%22");
	    previewText = previewText.replace(/\%u201D/ig, "%22");
  	    previewText = previewText.replace(/\%u2018/ig, "%27");
  	    previewText = previewText.replace(/\%u2019/ig, "%27");  	    
  	    previewText = previewText.replace(/\%u2013/ig, "-");  
  	    previewText = previewText.replace(/\%u2014/ig, "-");    	      	    
  	    previewText = previewText.replace(/\%u2026/ig, "...");    	
  	    previewText = previewText.replace(/\+/g, "%2B");
	    
	    //previewText.replace(/\n/g, "%0a");
//	    previewText = previewText.replace(/\+/g, "%2b");
  // 	    previewText = previewText.replace(/\%/g, "%25");
//   	    alert(previewText);
	    
		// add the previewText to the URL querystring    
		// have to URL encode it for it to work correctly
	    var params = "t=" + previewText;
	
		// do the fun ajax!    
	    retrieveURL(url, "PREVIEW", commentId, params);
	}

	function hideArea(theType) {
		var elementName = 'postcomment' + commentId;
		var previewName = 'previewcomment' + commentId;
	
		// always hide the error div		
		if (hasError) {
			var errorDiv = "errorcomment" + commentId;
			Element.hide(errorDiv);
			hasError = false;
		}
		
	    if (postingComment) {	
	        // we must hide the current stored commentId
	        // if we are canceling, we do it pretty
	        if (theType == "cancel") {
				Element.hide(previewName);        
		        Effect.SlideUp(elementName, { duration: 0.5 });
		    }
		    else {
		    	// otherwise we are posting another comment
		    	// so do it REAL quick
				Element.hide(previewName);	    	
				document.getElementById(elementName).innerHTML = "";
			}
	    }
	}

	function figureOut(theForm) {
// 		alert(buttonState);
		
		if (buttonState == 'preview') {
			previewComment(theForm);
		}
		else if (buttonState == 'cancel') {
			cancelPost();
		}
		else if (buttonState == 'post') {
			submitForm(theForm);
		}
	}

	// this checks the comments for when someone types, and if it's different than what's being preview we
	// turn off the post button
	function checkComment() {

		var tTitle = "";
		var tText = "";
		
		if (document.forms['rateForm'].elements['postCommentTitle']) {
			tTitle = document.forms['rateForm'].elements['postCommentTitle'].value;
		}
		
		if (document.forms['rateForm'].elements['postCommentTextArea']) {
			tText = document.forms['rateForm'].elements['postCommentTextArea'].value;
		}
	    
	   
 //    		alert(tTitle + " " + previewTitle + " : " + tText + " " + previewText);
	    if (canPost && (tText != previewText || tTitle != previewTitle)) {
	    	disallowPost();
	   	}
	}

	function disallowPost() {
	    canPost = false;
	    document.getElementById("postbutton" + commentId).disabled = true;
	}

	function allowPost() {
	    canPost = true;
	    var elem = document.getElementById("postbutton" + commentId);
	    
	    elem.disabled = false;
	    
	    // alert(previewingComment);
	    
	    if (!previewingComment) {
			window.setTimeout("document.getElementById('postbutton' + commentId).focus()", 501);
	    }
	    else {
		    try {
		    	 document.getElementById('postbutton' + commentId).focus();
		   	} catch (e) {
		   		alert(e);
		   	}
	    }
		
//		alert(elem);
//	    document.getElementById("postbutton" + commentId).focus();
	//    alert(document.getElementById("postbutton" + commentId).focus);
	}

  function retrieveURL(url, type, id, params) {
    which = id;
    if (window.XMLHttpRequest) { // Non-IE browsers
        req = new XMLHttpRequest();

      
        // pretty sure this adds a listener, which handles communication
        // listeners apparently don't like parameters, either
        if ("RATE" == type) {
            req.onreadystatechange = processRateStateChange;          
        }
        else if ("RECOMMEND" == type) {
            req.onreadystatechange = processRecommendStateChange;          
        } 
        else if ("PREVIEW" == type) {
			req.onreadystatechange = processPreviewComment;                  
        }      
        else {
            req.onreadystatechange = processStateChange;
        }

        try {
            req.open("POST", url, true);
	   		req.setRequestHeader("Content-type", "application/x-www-form-urlencoded; charset=UTF-8");
			req.setRequestHeader("Content-length", params.length);
			req.setRequestHeader("Connection", "close");            	    	
            req.send(params);
        } catch (e) {
            alert(e);
        }
    } 
    else if (window.ActiveXObject) { // IE
        req = new ActiveXObject("Microsoft.XMLHTTP");
		
        if (req) {
            if ("RATE" == type) {
                req.onreadystatechange = processRateStateChange;          
            }
            else if ("RECOMMEND" == type) {
                req.onreadystatechange = processRecommendStateChange;          
            }       
            else if ("PREVIEW" == type) {
				req.onreadystatechange = processPreviewComment;                  
	   		}   
            else {
                req.onreadystatechange = processStateChange;
            }
        
            req.open("POST", url, true);
	   		req.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
			req.setRequestHeader("Content-length", params.length);
			//req.setRequestHeader("Connection", "close");            	    	
            req.send(params);
        }
    }
  }
  

  // listener
  function processStateChange() {
    
    if (req.readyState == 4) { // Complete
      if (req.status == 200) { // OK response
        document.getElementById("theTable").innerHTML = req.responseText;

      } else {

        alert("Problem: " + req.statusText);

      }

    }
  }
  
  
  
	function processPreviewComment() {

		if (req.readyState == 4) { // Complete
			if (req.status == 200) { // OK response
				var postCommentDiv = document.getElementById("postcomment" + commentId);
				var previewCommentDiv = document.getElementById("previewcomment" + commentId);
				
			  	// make it visible
			    // document.getElementById("previewComment").style.display = "block";
			    
				previewText = req.responseText;
				
				var commentError = false;
				
				if (previewText.indexOf("@@@ERROR@@@") != -1) {
					previewText = "<div class='soapbloxError'>" + previewText.substring(11, previewText.length) + "</div>";						
					commentError = true;
				}
    
		        // set values in the preview area
			    document.getElementById("previewTitle" + commentId).innerHTML = previewTitle;
			    document.getElementById("previewCommentText" + commentId).innerHTML = previewText;
			    
			    // alert(previewingComment); 
    
    			// if we're not already previewing a comment we slide down
    			if (!previewingComment) {
					Effect.SlideDown("previewcomment" + commentId, { duration: 0.5, scaleFrom: 3});
					//window.setTimeout("postButton.focus()", 501);
				}
				// otherwise, we just update the text
				else {
					Element.show("previewcomment" + commentId);
				}
			
				if (commentError) {
					disallowPost();
				}					
				else {
					allowPost();
				}
				
				previewingComment = true;
			}
			else {
				alert("Problem: " + req.statusText);
			}
		}	
	}
  
    function processRateStateChange() {
        //alert(loadName);
        //alert(document.getElementById(loadName));

        if (req.readyState == 4) { // Complete
        
            var loadName = "rateLoad" + which; 
            // alert("elem: " + document.getElementById(loadName));
            var elem = document.getElementById(loadName);
           

            if (req.status == 200) { // OK response
                elem.innerHTML = "<i>Complete!</i>";
                if (debug) {
                    alert(document.getElementById("rating" + which));
                    alert(req.responseText);
                }

				// alert(req.responseText);

        		var xmlDoc = req.responseXML;
        		var theWholeThing = "";
        		
        		var rateType = xmlDoc.getElementsByTagName("rateType")[0].childNodes[0].nodeValue;
        		var scoreType = xmlDoc.getElementsByTagName("scoreType")[0].childNodes[0].nodeValue;
				var average = xmlDoc.getElementsByTagName("averageScore")[0].childNodes[0].nodeValue;
				var viewRatingLink = xmlDoc.getElementsByTagName("viewRatingLink")[0].childNodes[0].nodeValue;
        			        		
        		//alert(rateType);
        		
        		if (rateType == "THUMBS" || rateType == "STARS") {
				//	if (average == "false") {
					// loop through the ratings   
					
						     		
	        			for (i = 0; i < xmlDoc.getElementsByTagName("rating").length; i++) {
	        			
	        				var theString = "";
	        			
		        			var theRating = xmlDoc.getElementsByTagName("rating")[i];
		        			var commentId = theRating.getElementsByTagName("commentId")[0].childNodes[0].nodeValue;
							var ratingName = theRating.getElementsByTagName("ratingName")[0].childNodes[0].nodeValue;
							// var viewRatingLink = theRating.getElementsByTagName("viewRatingLink")[0].childNodes[0].nodeValue;
		        			var ratingValueId = theRating.getElementsByTagName("ratingValueId")[0].childNodes[0].nodeValue;
		        			var loc = theRating.getElementsByTagName("image-src")[0].childNodes[0].nodeValue;
		        			var mouseover = theRating.getElementsByTagName("image-mouseover")[0].childNodes[0].nodeValue;
		        			var mouseout = theRating.getElementsByTagName("image-mouseout")[0].childNodes[0].nodeValue;
		        			var count = theRating.getElementsByTagName("count")[0].childNodes[0].nodeValue;
		        			var theId = "rv" + commentId + "-" + ratingValueId;
		        			
		        			if (rateType == "THUMBS") {
		        			
//		        				if (average == "false") {
		        					theString = "<a href='javascript:void(0)' onclick='rateThumb(\"" + commentId + "\", \"" + ratingValueId + "\")'>";
		        				
		        					if ("RATING_NAME" == scoreType) {
		    	    					theString += ratingName;
			        				}
			        				else {
		 
										theString += "<img border='0' name='" + theId + "' src='" + loc + "' onmouseover='hover(\"" +theId + "\", \"" + mouseover + "\")'  onmouseout='hover(\"" +theId + "\", \"" + mouseout + "\")'>";		        				
		        					}
		        					theString += "</a>";
		        					
		        					if (average == "false") {
		        						 theString += " - " + count;
									}
		        			//	}
		        			//	else {
		        			//		theString = "(" + xmlDoc.getElementsByTagName("score")[0].childNodes[0].nodeValue + ")";
		        			//	}
		        			}
		        			else { // STARS
		        				theString = "<a href='javascript:void(0)' onclick='rateThumb(\"" + commentId + "\", \"" + ratingValueId + "\")'><img border='0' name='star" + commentId + "-" + i + "' src='" + loc + "' onmouseover='starHover(\"" + mouseover + "\", \"" + commentId + "\", \"" + i + "\")'  onmouseout='starHover(\"" + mouseout + "\", \"" + commentId + "\", \"" + i + "\")'></a> ";
		        			}
		        			
		        			/*
		        			var theImage = document.images[theId]; 
		        			theImage.src = loc;
		        			
							theImage.onmouseout= (function (a, b) {
		      					return function () {
		      						document.images[a].src = b;
								};
		    				})(theId, mouseout);
								// hover(theId, mouseout); 
								//alert(e);
		        				//alert("mout-src: " + loc + "\nId: " + theId + "\nmouseover: " + mouseover + "\n:mouseout: " + mouseout);
		        				//document.images[theId].src = mouseout;
		        			
		        			
							theImage.onmouseover= (function (a, b) {
		      					return function () {
		      						document.images[a].src = b;
								};
		    				})(theId, mouseover); */
		    				
		    				if (i < xmlDoc.getElementsByTagName("rating").length - 1) {
		    					theString = theString + "&nbsp;";
//		    					alert("Your mom");
		    				}
		    				
		    				theWholeThing += theString;
		        		}
	        	//	}
	        	//	else {
	        	//		alert(xmlDoc.getElementsByTagName("score")[0].childNodes[0].nodeValue);
	        	//		v
	        	//		theWholeThing = xmlDoc.getElementsByTagName("score")[0].childNodes[0].nodeValue;
	        	//	}
	        	
	        		if (average == "true") {
	        			theWholeThing = "(<a href=\"" + viewRatingLink+ "\">" + xmlDoc.getElementsByTagName("score")[0].childNodes[0].nodeValue + "</a>) " + theWholeThing;
	        		}
	        		
	        	} // End thumbs and stars
	        	else if ("RADIO" == rateType || "DROP_DOWN" == rateType) {
	        		var score = "";
	        		
	        	//	alert("bob!");

					if (scoreType == "IMAGE") {
						if (average == "false") {
							var scoreNode = xmlDoc.getElementsByTagName("score")[0];
							for (i = 0; i < scoreNode.getElementsByTagName("oneScore").length; i++) {
								score += "<img border='0' src='" + scoreNode.getElementsByTagName("path")[i].childNodes[0].nodeValue + "'> - " +  scoreNode.getElementsByTagName("count")[i].childNodes[0].nodeValue + " ";
							}
						}
						else {
							score = "(<a href=\"" + viewRatingLink + "\">" + xmlDoc.getElementsByTagName("score")[0].childNodes[0].nodeValue + "</a>)";						
	//						score = xmlDoc.getElementsByTagName("score")[0].childNodes[0].nodeValue;
							//alert("score: " + score);						
						}
					}
					else {
						score = "(<a href=\"" + viewRatingLink + "\">" + xmlDoc.getElementsByTagName("score")[0].childNodes[0].nodeValue + "</a>)";
						// alert("score: " + score);
					} 
					
					theWholeThing = score;
	        	}
	        	/*
	        	var score = "";

				if (scoreType == "IMAGE") {
					var scoreNode = xmlDoc.getElementsByTagName("score")[0];
					for (i = 0; i < scoreNode.getElementsByTagName("oneScore").length; i++) {
						score += "<img border='0' src='" + scoreNode.getElementsByTagName("path")[i].childNodes[0].nodeValue + "'> - " +  scoreNode.getElementsByTagName("count")[i].childNodes[0].nodeValue + " ";
					}
				}
				else {
					score = xmlDoc.getElementsByTagName("score")[0].childNodes[0].nodeValue;
				} */
        		        		
        		document.getElementById("rating" + which).innerHTML = theWholeThing;
            } 
            else 
            {
                elem.innerHTML = "<b>Error!</b>";            
            }
            
            Effect.Fade(loadName);
        }
    } 
    
    function starHover(fileLoc, commentId, theIndex) {
    	for (var i = 0; i <= theIndex; i++) {
    		var theStar = "star" + commentId + "-" + i;
    		document.images[theStar].src = fileLoc;
    	}
    }
    
    function thumbHover(fileLoc, commentId, theIndex) {
   		var theStar = "star" + commentId + "-" + theIndex;
		document.images[theStar].src = fileLoc;

    }    
  
    function processRecommendStateChange() {
        // alert("elem: " + document.getElementById(loadName));
        var elem = document.getElementById("recommendLoad");
        var recommender = document.getElementById("recommender");
    
        if (req.readyState == 4) {
            if (req.status == 200) {
                elem.innerHTML = "<i>Complete!</i>";            
                recommender.innerHTML = req.responseText;                
            }
            else {
                elem.innerHTML = "<b>Error!</b>";  
            }
            
            recommender.disabled = false;
        }
        
        Effect.Fade("recommendLoad");        
    }
    
	function rateThumb(theCommentId, ratingValueId) {

        var url = baseUrl + "ajaxRate.do";
        var params = "id=" + theCommentId + "&value=" + ratingValueId;
        if (debug) {
            alert("commentId" + commentId + ", value: " + ratingValueId  + "\nurl: " + url);
        }
        
        var loadName = "rateLoad" + theCommentId;            
        // alert("loadName: " + loadName);
        var elem = document.getElementById(loadName);
        // alert("elem: " + elem);
        Element.show(elem);
        elem.innerHTML = "<I>Processing...</i>";
        
        retrieveURL(url, "RATE", theCommentId, params);
    }
     

    function rate(theCommentId) {
        var selectName = "select" + theCommentId;
        var selector = document.rateForm.elements[selectName];
        var rateValue = selector.options[selector.selectedIndex].value;
        var url = baseUrl + "ajaxRate.do";
        var params = "id=" + theCommentId + "&value=" + rateValue;
        if (debug) {
            alert("commentId" + commentId + ", value: " + rateValue  + "\nurl: " + url);
        }
        
        var loadName = "rateLoad" + theCommentId;            
        // alert("loadName: " + loadName);
        var elem = document.getElementById(loadName);
        // alert("elem: " + elem);
        Element.show(elem);
        elem.innerHTML = "<I>Processing...</i>";
        
        retrieveURL(url, "RATE", theCommentId, params);
    }
    
    function radioRate(theCommentId) {
        var selectName = "select" + theCommentId;
        var selector = document.rateForm.elements[selectName];
        var rateValue = "";
        
        for (var i = 0; i < selector.length; i++) {
        	if (selector[i].checked) {
        		rateValue = selector[i].value;
        		break;
        	}
        }
        
        var url = baseUrl + "ajaxRate.do";
        var params = "id=" + theCommentId + "&value=" + rateValue + "&type=radio";
        if (debug) {
            alert("commentId" + commentId + ", value: " + rateValue  + "\nurl: " + url);
        }
        
        var loadName = "rateLoad" + theCommentId;            
        // alert("loadName: " + loadName);
        var elem = document.getElementById(loadName);
        // alert("elem: " + elem);
        Element.show(elem);
        elem.innerHTML = "<I>Processing...</i>";
        
        retrieveURL(url, "RATE", theCommentId, params);
    }    
    
    function recommend(diaryId) {

        var url = baseUrl + "ajaxRecommend.do";
        var params = "id=" + diaryId;
        
        if (debug) {
            alert("diaryId: " + diaryId);        
            alert("url: " + url);        
        }
        
        var recommender = document.getElementById("recommender");
        recommender.disabled = true;
        
        var elem = document.getElementById("recommendLoad");
        Element.show(elem);
        elem.innerHTML = "<br /><i>Processing...</i>";
        
        retrieveURL(url, "RECOMMEND", diaryId, params);        
    }
    
	function toggleEditor(id) {
		var elm = document.getElementById(id);

		if (tinyMCE.getInstanceById(id) == null)
			tinyMCE.execCommand('mceAddControl', false, id);
		else
			tinyMCE.execCommand('mceRemoveControl', false, id);
	} 
	
	function turnOnEditor(id) {
		if (tinyMCE.getInstanceById(id) == null)
			tinyMCE.execCommand('mceAddControl', false, id);	
	}
	
	function turnOffEditor(id) {
		if (id == "postCommentTextArea" && !tinyMCE.getInstanceById(id)) {
			id = "commentText";		
		}
		
		// alert(id);

		if (tinyMCE.getInstanceById(id) != null)
			tinyMCE.execCommand('mceRemoveControl', false, id);
	}	
	
	function setDiaryButtons(id) {
		var selectedValue = id.options[id.selectedIndex].value;	
		
		if (selectedValue == "WYSIWYG") { // which is WYSIWYG
			disableDiaryButtons(true);
		}
		else {		
			disableDiaryButtons(false);		
		}
	}
	
	
	function disableDiaryButtons(theValue) {
		document.getElementById("bold1").disabled = theValue;
		document.getElementById("italic1").disabled = theValue;
		document.getElementById("quote1").disabled = theValue;
		document.getElementById("bold2").disabled = theValue;
		document.getElementById("italic2").disabled = theValue;
		document.getElementById("quote2").disabled = theValue;	
	}	
	
	function setCommentButtons(id) {
		var selectedValue = id.options[id.selectedIndex].value;	
		
		if (selectedValue == "WYSIWYG") { // which is WYSIWYG
			disableCommentButtons(true);
		}
		else {		
			disableCommentButtons(false);		
		}
	}	
	
	function disableCommentButtons(theValue) {
		document.getElementById("bold1").disabled = theValue;
		document.getElementById("italic1").disabled = theValue;
		document.getElementById("quote1").disabled = theValue;
	}	

	
	function toggleDiaryEditor(id) {
		var selectedValue = id.options[id.selectedIndex].value;
		// alert(selectedValue);		
		
		setDiaryButtons(id);
		
		if (selectedValue == "WYSIWYG") { // which is WYSIWYG
			turnOnEditor("editMainText");
			turnOnEditor("editExtendedText");	
		}
		else {
			turnOffEditor("editMainText");
			turnOffEditor("editExtendedText");			

		}
	}   
	
	function toggleCommentEditor(id) {
		var selectedValue = id.options[id.selectedIndex].value;
		
		setCommentButtons(id);	
		
		// alert(selectedValue);
		
		if (selectedValue == "WYSIWYG") { // which is WYSIWYG
			turnOnEditor("postCommentTextArea");
		}
		else {
		    // alert("before turn off");
			turnOffEditor("postCommentTextArea");
		}
	} 
	
	function toggleQuickHitEditor(id) {
		var selectedValue = id.options[id.selectedIndex].value;
		
		if (selectedValue == "WYSIWYG") { // which is WYSIWYG
			turnOnEditor("quickHitText");
		}
		else {
			turnOffEditor("quickHitText");
		}
	} 		

	function addTags(textAreaId, startTag, endTag, content) {
		
		var textArea;
		
		if (document.forms['rateForm']) {
			textArea = document.forms['rateForm'].elements[textAreaId];
		}
		else {
			textArea = document.getElementById(textAreaId);
		}
		
		if (typeof textArea.selectionStart != "undefined") {
			textArea.focus();
			var selStart = textArea.selectionStart;
			var selEnd = textArea.selectionEnd;
			var selText = textArea.value.substring(selStart, selEnd);
			var scrlTop = textArea.scrollTop;
			var scrlDown = textArea.value.length <= selStart;
			if (selText.indexOf(startTag) === 0 && endTag == selText.substring(selText.length - endTag.length, selText.length)) {
				textArea.value = textArea.value.substring(0, selStart) + selText.substring(startTag.length, selText.length - endTag.length) 
					+ textArea.value.substring(selEnd, textArea.value.length);
				textArea.selectionStart = selStart;
				textArea.selectionEnd = selEnd - (startTag.length + endTag.length);
				textArea.scrollTop = scrlTop;
			} else {		
				textArea.value = textArea.value.substring(0, selStart) + startTag + (content ? content : selText)
					+ endTag + textArea.value.substring(selEnd, textArea.value.length);
				textArea.selectionStart = selStart;
				textArea.selectionEnd = selStart + startTag.length + (content ? content.length : selText.length) + endTag.length;
				textArea.scrollTop = (scrlDown ? 10000000 : scrlTop);
			}
		} else if (document.selection) {
			var range = document.selection.createRange();
			if (range.parentElement() != textArea) {
				var textRange = textArea.createTextRange();
				textRange.moveStart('character', textArea.value.length);
				textRange.collapse();
				textRange.select();
				range = document.selection.createRange();
			}
			textArea.focus();
			if (range.text.indexOf(startTag) === 0 && endTag == range.text.substring(range.text.length - endTag.length, range.text.length)) {
				range.text = range.text.substring(startTag.length, range.text.length - endTag.length);
			} else {
				range.text = startTag + (content ? content : range.text) + endTag;
			}
		} else {
			textArea.focus();
			textArea.value = startTag + (content ? content : "") + endTag;
			if (typeof textArea.scrollTop != "undefined") {
				textArea.scrollTop = 10000000;
			}
		}
	}
	
	
	function addBoldTags(textAreaId) {
		addTags(textAreaId, "<b>", "</b>");
		return false;
	}
	
	function addItalicTags(textAreaId) {
		addTags(textAreaId, "<i>", "</i>");
		return false;
	}
	
	function addQuoteTags(textAreaId) {
		addTags(textAreaId, "<blockquote>", "</blockquote>");
		return false;
	}
		

</script>

   
<script language="javascript" type="text/javascript" src="/javascript/effects.js"></script> 


    <script src="/javascript/modules/qhcomments/qhcomments.js"
            type="text/javascript"></script>
    <link rel="stylesheet" href="/stylesheets/socialbuttons.css" type="text/css">


    <script type="text/javascript">
        var _gaq = _gaq || [];
        _gaq.push(['_setDomainName', 'none']);
        _gaq.push(['_setAllowLinker', true]);
        
        _gaq.push(['t1._setAccount', 'UA-24612334-1']);
        _gaq.push(['t1._trackPageview']);
        
        
        _gaq.push(['t2._setAccount', 'UA-23941609-37']);
        _gaq.push(['t2._trackPageview']);
        

        function track_ga(name, action, url) {
        
            _gaq.push(['t1._trackSocial', name, action, url]);
        
        
            _gaq.push(['t2._trackSocial', name, action, url]);
        
        }
    </script>


</head>
<body>


<div id="fb-root"></div>
<script>
    (function() {
        var ga = document.createElement('script');
        ga.type = 'text/javascript';
        ga.async = true;
        ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
        var s = document.getElementsByTagName('script')[0];
        s.parentNode.insertBefore(ga, s);
    })();
</script>
<center>
    <div class="mainLayout">

        
            <div id="fb-root">
    </div>
<script>(function(d, s, id) {
          var js, fjs = d.getElementsByTagName(s)[0];
          if (d.getElementById(id)) return;
          js = d.createElement(s); js.id = id;
          js.src = "//connect.facebook.net/en_US/all.js#xfbml=1&appId=245872525504602";
          fjs.parentNode.insertBefore(js, fjs);
        }(document, 'script', 'facebook-jssdk'));
    </script>

<table border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse" width="1034" id="AutoNumber1" bordercolorlight="#FFFFFF" height="100">
  <tr>
<td width="100%" align="left" valign="top" height="100">
<a href="http://hillbillyreport.org"><img src="http://hillbillyreport.org/upload/Banner11152010.jpg" border="0"></a>
<script src="http://sharebar.addthiscdn.com/v1/sharebar.js" type="text/javascript"></script>
        

        <table class="mainTable">
            <tr>
                
                    

                        
                        
                            <td valign="top" class="LEFT_SIDE">
                                
                                    
                                        





<table width="100%" class="objectTable">
	<tr>
		<td class="objectHeading">
			Menu
		</td>
	</tr>
	<tr>
		<td class="objectContent">
 
					
			

			
			
				<br />
				<center><a href="/join.do">Make a New Account</a></center>
				<br />
				<form name="logonForm" method="post" action="/logonSubmit.do">	
                    
					Username: <br />
					<input type="text" name="username" value=""><br />
					Password: <br />
					<input type="password" name="password" value=""><br />
					<input type="submit" value="Submit"><br />
				</form>
				<br />
				<center><a href="/emailPassword.do">Forget your username or password?</a></center>
				<br />	
			

		</td>
	</tr>
</table>
<br />

                                    
                                        


<!-- search.jsp -->
<form name="searchForm" method="post" action="/search.do">
<table class="objectTable" width="100%">
	<tr>
		<td class="objectHeading">Search</td>
	</tr>
	<tr>
		<td class="objectContent"><select name="searchTypeId">
                <option value="2">Diaries</option>                      
				<option value="1">Comments</option>
			</select><br />
			<input type="text" name="searchWords" size="18" /> <br />
			<input type="submit" value="Search" /><br />
			<br />
			<center><a href="/search.do">Advanced Search</a></center>
			<br />
		</td>
	</tr>
</table>
<br />
</form>
<form method="get" action="http://www.google.com/search"> <input type="hidden" name="ie" value="UTF-8" /> <input type="hidden" name="oe" value="UTF-8" /> <div style="background-color:white;"> <a href="http://www.google.com/"><img src="http://www.google.com/logos/Logo_40wht.gif" border="0" alt="Google" /></a> </div> <input type="text" name="q" size="18" maxlength="255" value="" /><br /> <small> <input type="hidden" name="domains" value="http://www.hillbillyreport.org/" /> <input type="radio" name="sitesearch" value="" /> WWW <br /> <input type="radio" name="sitesearch" value="http://www.hillbillyreport.org/" checked="checked" /> http://www.hillbillyreport.org/ <br /></small> <input type="submit" name="btnG" value=" Google Search " /> </form> <!-- SiteSearch Google -->

                                    
                                        





                                    
                                
                            </td>
                        

                        
                        
                    

                        
                        

                        
                        
                            <td class="MAIN_BODY" valign="top">
                                
                                
                                    
                                        <table width="100%">
<tbody>
<tr>
<td width="100%" align="center">
<div style="text-align: center;"><em><em>"Never before have so few with so much promised to take away so   much from so many and then laugh their asses off as the so many with so  little vote for the so few with so much." <br /><strong>A James Pence Quote</strong></em></em><br /><span style="font-size: 16px; font-family: Times New Roman;"><span style="text-align: center; font-size: 16px;"><span style="text-align: center; font-size: 12px;"><br /></span></span></span></div>
</td>
</tr>
</tbody>
</table>
<!-- AddThis Button BEGIN -->
<div class="addthis_toolbox addthis_default_style"><a class="addthis_button_compact" href="http://www.addthis.com/bookmark.php?v=250&amp;username=xa-4b3e85fa28308692">Share</a> <span class="addthis_separator">|</span> <a class="addthis_button_facebook"></a> <a class="addthis_button_digg"></a> <a class="addthis_button_google"></a> <a class="addthis_button_twitter"></a></div>
<script src="http://s7.addthis.com/js/250/addthis_widget.js#username=xa-4b3e85fa28308692" type="text/javascript"></script>
<!-- AddThis Button END -->

                                    
                                
                                







<table width="100%">
    
</table>



    <b>Fundraising</b> <a
                   href='/tag/Fundraising?feed=rss'> <img 
                   src="/images/feed-icon.jpg" border="0"/> </a>




    




             





        


        
            
                
                
                
                
                
                
                
            





<table class="DIARY_LIST" width="100%">
    
    
        <tr>
            <td class="DIARY_LIST_ENTRY">
                
                    
                    
                










    <table width="100%">
        <tr>
            <td>
            <h1 class="diaryTitle">            
            <a class="diaryTitle" href="/diary/2110/populist-glenn-beck-whores-for-the-chamber-of-commerce">&quot;Populist&quot; Glenn Beck Whores for the Chamber of Commerce</a>
            
            <a href="/showDiary.do?diaryId=2110" class="diaryTitle"></a> <!-- Hotlist crap --> </h1>
            <h2 class="author">by: 
	        	<a href='/user/RDemocrat'>
	        		RDemocrat
	        	</a>
            </h2>














<table cellpadding="0" cellspacing="0" class="social_buttons">
    <tr valign="top">
        
    </tr>
</table>


            <h3 class="diaryTimestamp">Thu Oct 14, 2010 at 15:30:33 PM EDT</h3>
            </td>
        </tr>
        <tr>
            <td>
            	 
            	Glenn Beck wants to portray himself as a "Populist". He wants you to think he is all out for the "little guy" against the "elites" of Washington and the Progressive movement. It seems that he not only ignores the fact that nothing Progressive has come from Washington D.C. in a long time, which is part of the problem. Now he seeks to insult your intelligence in another way. You see, far from being for the "little guy" or being a Populist at all, Glenn Beck is now doing what he does best. Whoring for money for the greediest and least patriotic among us while using the most weak minded among us to accomplish it.
			</td>
        </tr>
        <tr>
            <td>
            <a href="/diary/2110/populist-glenn-beck-whores-for-the-chamber-of-commerce">
            
                
                
                                    There's More...
				
            </a>
            
                :: (1 
                   Comments, 672 words in story) 
            </td>
        </tr>
    </table>

















            </td>
        </tr>
    
        <tr>
            <td class="DIARY_LIST_ENTRY">
                
                    
                    
                










    <table width="100%">
        <tr>
            <td>
            <h1 class="diaryTitle">            
            <a class="diaryTitle" href="/diary/1755/john-waltz-outraises-republican-incumbent-geoff-davis">John Waltz Out-Raises Republican Incumbent Geoff Davis</a>
            
            <a href="/showDiary.do?diaryId=1755" class="diaryTitle"></a> <!-- Hotlist crap --> </h1>
            <h2 class="author">by: 
	        	<a href='/user/RDemocrat'>
	        		RDemocrat
	        	</a>
            </h2>














<table cellpadding="0" cellspacing="0" class="social_buttons">
    <tr valign="top">
        
    </tr>
</table>


            <h3 class="diaryTimestamp">Fri Jul 16, 2010 at 22:03:53 PM EDT</h3>
            </td>
        </tr>
        <tr>
            <td>
            	 
            	I wrote this diary, <a href="http://www.hillbillyreport.org/diary/1751/john-waltz-continues-to-show-strength">"John Waltz Continues to Show Strength"</a> yesterday when I realized that the Waltz campaign had put up a very strong showing in fundraising for the last quarter. However, now it appears as if I put it up before I realized just how strong this showing really was. You see, as a political newcomer and a Progressive in a red area John Waltz did the unthinkable. He actually OUT-RAISED the sitting Republican Geoff Davis. Even more remarkable is that Waltz smoked Davis in donations from individuals. &nbsp;
			</td>
        </tr>
        <tr>
            <td>
            <a href="/diary/1755/john-waltz-outraises-republican-incumbent-geoff-davis">
            
                
                
                                    There's More...
				
            </a>
            
                :: (1 
                   Comments, 567 words in story) 
            </td>
        </tr>
    </table>

















            </td>
        </tr>
    
        <tr>
            <td class="DIARY_LIST_ENTRY">
                
                    
                    
                










    <table width="100%">
        <tr>
            <td>
            <h1 class="diaryTitle">            
            <a class="diaryTitle" href="/diary/1751/john-waltz-continues-to-show-strength">John Waltz Continues to Show Strength</a>
            
            <a href="/showDiary.do?diaryId=1751" class="diaryTitle"></a> <!-- Hotlist crap --> </h1>
            <h2 class="author">by: 
	        	<a href='/user/RDemocrat'>
	        		RDemocrat
	        	</a>
            </h2>














<table cellpadding="0" cellspacing="0" class="social_buttons">
    <tr valign="top">
        
    </tr>
</table>


            <h3 class="diaryTimestamp">Thu Jul 15, 2010 at 20:32:07 PM EDT</h3>
            </td>
        </tr>
        <tr>
            <td>
            	 
            	Over in Kentucky's Fourth Congressional District a Democrat is emerging that could very well take that seat back. While not on many radar screens, the good folks at the Waltz campaign have really worked hard and it is really showing. Now, they have posted a really great fund raising quarter and stand poised to challenge Geoff Davis for that seat. The race in Kentucky's Fourth Congressional District just got really interesting.... &nbsp;
			</td>
        </tr>
        <tr>
            <td>
            <a href="/diary/1751/john-waltz-continues-to-show-strength">
            
                
                
                                    There's More...
				
            </a>
            
                :: (0 
                   Comments, 919 words in story) 
            </td>
        </tr>
    </table>

















            </td>
        </tr>
    
        <tr>
            <td class="DIARY_LIST_ENTRY">
                
                    
                    
                










    <table width="100%">
        <tr>
            <td>
            <h1 class="diaryTitle">            
            <a class="diaryTitle" href="/diary/1666/karl-roves-newest-failure">Karl Rove&#39;s Newest Failure</a>
            
            <a href="/showDiary.do?diaryId=1666" class="diaryTitle"></a> <!-- Hotlist crap --> </h1>
            <h2 class="author">by: 
	        	<a href='/user/RDemocrat'>
	        		RDemocrat
	        	</a>
            </h2>














<table cellpadding="0" cellspacing="0" class="social_buttons">
    <tr valign="top">
        
    </tr>
</table>


            <h3 class="diaryTimestamp">Tue Jun 22, 2010 at 12:10:59 PM EDT</h3>
            </td>
        </tr>
        <tr>
            <td>
            	 
            	We all remember "the Architect" of the Bush Administration, Karl Rove. Yes, "the Architect" laid the foundations for trillions of wasted taxpayer dollars in the middle-eastern wars, Corporate Welfare, and deregulation which led to the crashing of our economy. Far from being satisfied with a failed Presidency that spurned a crashed economy, loss of American jobs, loss of American morale and prestige, Rove has moved on to newer things. However as it turns out every thing this man touches turns to failure.
			</td>
        </tr>
        <tr>
            <td>
            <a href="/diary/1666/karl-roves-newest-failure">
            
                
                
                                    There's More...
				
            </a>
            
                :: (0 
                   Comments, 586 words in story) 
            </td>
        </tr>
    </table>

















            </td>
        </tr>
    
        <tr>
            <td class="DIARY_LIST_ENTRY">
                
                    
                    
                










    <table width="100%">
        <tr>
            <td>
            <h1 class="diaryTitle">            
            <a class="diaryTitle" href="/diary/1502/steele-defends-rnc-spending">Steele Defends RNC Spending</a>
            
            <a href="/showDiary.do?diaryId=1502" class="diaryTitle"></a> <!-- Hotlist crap --> </h1>
            <h2 class="author">by: 
	        	<a href='/user/RDemocrat'>
	        		RDemocrat
	        	</a>
            </h2>














<table cellpadding="0" cellspacing="0" class="social_buttons">
    <tr valign="top">
        
    </tr>
</table>


            <h3 class="diaryTimestamp">Tue May 11, 2010 at 16:10:54 PM EDT</h3>
            </td>
        </tr>
        <tr>
            <td>
            	 
            	Embattled RNC Chairman Michael Steele today defended his committee's spending after a purge in "leadership". He gave a Power Point presentation to a closed meeting of Republican elitists which seem to have for now saved his job. Of course, jetting around in private jets and riding in limosines is one thing, but I guess Lesbian bondage is where these hypocrites draw the line.
			</td>
        </tr>
        <tr>
            <td>
            <a href="/diary/1502/steele-defends-rnc-spending">
            
                
                
                                    There's More...
				
            </a>
            
                :: (0 
                   Comments, 355 words in story) 
            </td>
        </tr>
    </table>

















            </td>
        </tr>
    
        <tr>
            <td class="DIARY_LIST_ENTRY">
                
                    
                    
                










    <table width="100%">
        <tr>
            <td>
            <h1 class="diaryTitle">            
            <a class="diaryTitle" href="/diary/1252/rnc-insults-its-donors-and-america">RNC Insults It&#39;s Donors and America</a>
            
            <a href="/showDiary.do?diaryId=1252" class="diaryTitle"></a> <!-- Hotlist crap --> </h1>
            <h2 class="author">by: 
	        	<a href='/user/RDemocrat'>
	        		RDemocrat
	        	</a>
            </h2>














<table cellpadding="0" cellspacing="0" class="social_buttons">
    <tr valign="top">
        
    </tr>
</table>


            <h3 class="diaryTimestamp">Thu Mar 04, 2010 at 11:36:10 AM EST</h3>
            </td>
        </tr>
        <tr>
            <td>
            	 
            	What do you do when you are the party of no?? The Party of no new ideas, no vision, and no compassion?? Since you know you have absolutely nothing to offer in the way of policy for the future besides the failures of the past, you get desperate. Instead of even trying to come up with a workable vision of the future, you insult your own donors and the American people by acting like spoiled rotten children who are not getting their way.
			</td>
        </tr>
        <tr>
            <td>
            <a href="/diary/1252/rnc-insults-its-donors-and-america">
            
                
                
                                    There's More...
				
            </a>
            
                :: (1 
                   Comments, 541 words in story) 
            </td>
        </tr>
    </table>

















            </td>
        </tr>
    
        <tr>
            <td class="DIARY_LIST_ENTRY">
                
                    
                    
                










    <table width="100%">
        <tr>
            <td>
            <h1 class="diaryTitle">            
            <a class="diaryTitle" href="/diary/114/daniel-mongiardo-showing-strength-in-eastern-kentucky">Daniel Mongiardo Showing Strength in Eastern Kentucky</a>
            
            <a href="/showDiary.do?diaryId=114" class="diaryTitle"></a> <!-- Hotlist crap --> </h1>
            <h2 class="author">by: 
	        	<a href='/user/RDemocrat'>
	        		RDemocrat
	        	</a>
            </h2>














<table cellpadding="0" cellspacing="0" class="social_buttons">
    <tr valign="top">
        
    </tr>
</table>


            <h3 class="diaryTimestamp">Mon May 11, 2009 at 12:07:39 PM EDT</h3>
            </td>
        </tr>
        <tr>
            <td>
            	 
            	In the First Quarter fundraising totals, Lt. Gov. Dan Mongiardo easily outpaced incumbent Republican Senator Jim Bunning. Many of these contributions came from the eastern part of Kentucky where Mongiardo is well-known and liked. From an area that has not had a Senator since John Sherman Cooper this can be understood. While Mongiardo considers this a sign of strength, others saw it as a weakness to his state-wide appeal.
			</td>
        </tr>
        <tr>
            <td>
            <a href="/diary/114/daniel-mongiardo-showing-strength-in-eastern-kentucky">
            
                
                
                                    There's More...
				
            </a>
            
                :: (0 
                   Comments, 898 words in story) 
            </td>
        </tr>
    </table>

















            </td>
        </tr>
    
        <tr>
            <td class="DIARY_LIST_ENTRY">
                
                    
                    
                










    <table width="100%">
        <tr>
            <td>
            <h1 class="diaryTitle">            
            <a class="diaryTitle" href="/diary/63/bunning-lowers-expectations-while-congressional-democrats-give-insight">Bunning Lowers Expectations While Congressional Democrats Give Insight</a>
            
            <a href="/showDiary.do?diaryId=63" class="diaryTitle"></a> <!-- Hotlist crap --> </h1>
            <h2 class="author">by: 
	        	<a href='/user/RDemocrat'>
	        		RDemocrat
	        	</a>
            </h2>














<table cellpadding="0" cellspacing="0" class="social_buttons">
    <tr valign="top">
        
    </tr>
</table>


            <h3 class="diaryTimestamp">Thu Apr 23, 2009 at 16:21:51 PM EDT</h3>
            </td>
        </tr>
        <tr>
            <td>
            	 
            	It is no big secret that Jim Bunning's fundraising has been a little off here lately. It is also no big secret just why. Recently, the nation has been finding out what Kentucky Progressives both rural and urban have known for quite some time. Jim Bunning is off his rocker. Now, even Republicans don't like him.
			</td>
        </tr>
        <tr>
            <td>
            <a href="/diary/63/bunning-lowers-expectations-while-congressional-democrats-give-insight">
            
                
                
                                    There's More...
				
            </a>
            
                :: (2 
                   Comments, 472 words in story) 
            </td>
        </tr>
    </table>

















            </td>
        </tr>
    
    
    <tr>
        <td>
        <table width="100%">
            <tr>
                <td align="left">
                	
				</td>
                <td align="right">
                	
				</td>
            </tr>
        </table>
        </td>
    </tr>
</table>


         
        
        
 
 
 
        
         
        
         
        
 
        


                                
                                    <iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fhillbillyreport.org%2F&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;colorscheme=dark&amp;height=80" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:450px; height:80px;" allowTransparency="true"></iframe>
<p><a style="display: inline;" href="http://hillbillyreport.org/tag.do?subjectId=746" target="_blank"><img class="asset  asset-image at-xid-6a00d83451581569e201539205b92b970b image-full" title="Clickheretop640" src="http://www.hillbillyreport.com/.a/6a00d83451581569e201539205b92b970b-800wi" border="0" alt="Clickheretop640" /></a></p>
                                
                            </td>
                        
                    

                        
                        
                            <td valign="top" class="RIGHT_SIDE">
                                
                                    
                                        <table width="100%" class="objectTable">
	<tr>
		<td class="objectHeading">About</td>
	</tr>
	<tr>
		<td class="objectContent">
<div style="text-align: center;"></div>
<a target="_blank" href="http://hillbillyreport.org/diary/3/about-us-by-Hillbilly">About Us</a><br><a target="_blank" href="http://www.youtube.com/user/HillbillyReport">Our Videos</a><br><a target="_blank" href="http://hillbillyreport.org/diary/7/community-guidelines">Community Guidelines</a><br><a target="_blank" href="http://www.hillbillyreport.org/diary/27/contact-us">Contact Us</a><a target="_blank" href="http://www.youtube.com/user/HillbillyReport"></a><a target="_blank" href="http://hillbillyreport.org/diary/7/community-guidelines"></a><br><a target="_blank" href="http://www.hillbillyreport.org/diary/1254/diary-tips-for-httphillbillyreportorg">Diary Formatting Tips</a>


<form style="border:1px solid #ccc;padding:3px;text-align:center;" action="http://feedburner.google.com/fb/a/mailverify" method="post" target="popupwindow" onsubmit="window.open('http://feedburner.google.com/fb/a/mailverify?uri=HillbillyReport-FrontPage', 'popupwindow', 'scrollbars=yes,width=550,height=520');return true"><p>Subscribe to HBR by email<br>Enter your email address:</p><p><input type="text" style="width:140px" name="email"/></p><input type="hidden" value="HillbillyReport-FrontPage" name="uri"/><input type="hidden" name="loc" value="en_US"/><input type="submit" value="Subscribe" /><p>Delivered by <a href="http://feedburner.google.com" target="_blank">FeedBurner</a></p></form>
<p><a href="http://feeds2.feedburner.com/HillbillyReport-FrontPage" rel="alternate" type="application/rss+xml"><img src="http://www.feedburner.com/fb/images/pub/feed-icon16x16.png" alt="" style="vertical-align:middle;border:0"/></a>&nbsp;<a href="http://feeds2.feedburner.com/HillbillyReport-FrontPage" rel="alternate" type="application/rss+xml">Subscribe in a reader</a></p>

		
		</td>
	</tr>
</table>
<br />


                                    
                                        <table class="objectTable" width="100%">
<tbody>
<tr>
<td class="objectHeading">Blog Roll</td>
</tr>
<tr>
<td class="objectContent">
<div class="module-content">
<p><a href="http://barefootandprogressive.com/">Barefoot And Progressive</a><br /><a href="http://www.bluebluegrass.com/">Blue Bluegrass</a><br /><a href="http://www.bluedogjabbering.blogspot.com/">Blue Dog Jabbering</a><br /><a href="http://bluegrasspolitics.bloginky.com/">Bluegrass Politics</a><br /><a title="Great Site" href="http://www.bushflash.com/">BushFlash</a><br /><a href="http://www.buzzflash.com/">BuzzFlash</a><br /><a href="http://www.ditchmitchky.com/">Ditch Mitch McConnell</a><br /><a href="http://fakeconsultant.blogspot.com/">Fake Consultant</a><br /> <a href="http://www.heartlandrevolution.com/" target="_self">Heartland Revolution</a><br /><a href="http://www.hillbillyreport.com/">Hillbilly Report</a><br /><a href="http://www.hillbillyreport.org/">Hillbilly Report Soapblox</a><br /><a href="http://isawaneyesorebillboard.com/" target="_self">I SAW AN EYESORE BILLBOARD</a><br /><a href="http://blog.kyequality.org/" target="_self">Kentucky Equality Federation</a><br /><a href="http://bluegrassfifthestate.wordpress.com/">Kentucky's Fifth Estate</a><br /><a href="http://kyfriedpolitics.blogspot.com/">Kentucky Fried Politics</a><br /><a href="http://unitedwestandky.com/" target="_self">Kentucky Guardian</a><br /><a href="http://www.kentuckylawblog.com/">Kentucky Law</a><br /><a href="http://www.kentuckymediaguide.com/">Kentucky Media Guide</a><br /><a href="http://kentuckysocialforum.org/">Kentucky Social Forum</a><br /><a href="http://leoweekly.com/" target="_self">Leo Weekly</a><br /><a href="http://www.leftblogistan.com/">Leftblogistan</a><br /><a href="http://liberalinkentucky.blogspot.com/">Liberal In Kentucky</a><br /><a href="http://lifewithmitchmcconnell.blogspot.com/" target="_self">Life With Mitch McConnell and Rand Paul</a><a href="http://www.louisvillespark.com/" target="_self"><br />Louisville Spark</a><a href="http://www.osi-speaks.blogspot.com/"><br />Osi Speaks</a><br /><a href="http://www.pageonekentucky.com/">Page One</a><br /><a href="http://www.pajamadeen.com/">Pajamadeen</a><br /><a href="http://www.progressiveblue.com/">Progressive Blue</a><br /><a href="http://www.progressive-independence.org/">Progressive Independence</a><br /><a href="http://reconstitution.us/rcnew/">Reconstitution</a><br /><a href="http://ronleach4ky.com/blog/" target="_self">Ron Leach</a><br /><a href="http://www.ruralvotes.com/cms/">Rural Votes</a><br /><a href="http://sentimental-journeys.com/" target="_self">SENTIMENTAL JOURNEYS</a><br /><a href="http://shelbycountydems.org/">Shelby County Democratic Party</a><br /><a href="http://sorrythisoneistaken.blogspot.com/">Sorry This One is Taken </a><br /><a href="http://tomeblen.wordpress.com/">The Bluegrass and Beyond</a><br /><a href="http://blugrassdem.blogspot.com/">The Bluegrass Democrat</a><br /><a href="http://www.sharethisurlaboutglennbeck.com/" target="_self">The Glenn Beck Review</a><br /><a href="http://www.mytown.ca/green-dog/">The Green-Dog Democrat</a><br /><a href="http://kydem.blogspot.com/">The Kentucky Democrat</a><br /><a href="http://www.peasantville.com/">The Peasantville Blog</a><br /><a href="http://theruraldemocrat.typepad.com/">The Rural Democrat</a><br /><a href="http://www.thepoliticsofjamiesanderson.blogspot.com/">The Politics Of Jamie Sanderson</a><a href="http://willyobiker.wordpress.com/"><br /></a><a href="http://valleyreport.blogspot.com/" target="_self">The Valley Report</a><a href="http://wrmineo.com/"><br />WrMineo</a><br /><a href="http://www.wikileakskentucky.com/" target="_self">WikiLeaks Kentucky</a><br /><a href="http://zirgar.blogspot.com/">Zirgar's Fresh New Brain Squeezin's!</a></p>
</div>
</td>
</tr>
</tbody>
</table>
<p>&nbsp;</p>
<!-- Start of StatCounter Code -->
<script type="text/javascript">// <![CDATA[
var sc_project=4664359;
var sc_invisible=0;
var sc_partition=46;
var sc_click_stat=1;
var sc_security="0da54efb";
// ]]></script>
<script src="http://www.statcounter.com/counter/counter.js" type="text/javascript"></script>
<p><noscript><div
class="statcounter"><a title="free hit counters"
href="http://www.statcounter.com/free_hit_counter.html"
target="_blank"><img  class="statcounter"
src="http://c.statcounter.com/4664359/0/0da54efb/0/" alt="free hit
counters"  /></a></div></noscript></p>
<!-- End of StatCounter Code -->

                                    
                                        






 











                                    
                                        



<table width="100%" class="objectTable">
<tr>
	<td class="objectHeading">Active Users</td>
</tr>
<tr>
	<td class="objectContent">
	Currently <a href="/activeUsers.do">0 user(s)</a> logged on.		
	</td>
</tr>
</table>	
<br />

                                    
                                
                            </td>
                        

                        
                        
                    
                
            </tr>
        </table>

        
            
        


        
<table width="100%">
<tr>
    <td align="right">
<!-- Start of StatCounter Code -->
<script type="text/javascript" language="javascript">
var sc_project=1767529; 
var sc_invisible=1; 
var sc_partition=16; 
var sc_security="859e170d"; 
</script>
<script type="text/javascript" language="javascript" src="http://www.statcounter.com/counter/counter.js"></script><noscript><a href="http://www.statcounter.com/" target="_blank"><img  src="http://c17.statcounter.com/counter.php?sc_project=1767529&java=0&security=859e170d&invisible=1" alt="free hit counter javascript" border="0"></a> </noscript>
<!-- End of StatCounter Code -->
Powered by: <a href="http://www.soapblox.net">SoapBlox</a>
    </td>
</tr>
</table>    
    </div>
</center>
<div id="socialPopup" style="display: none; z-index: 1000;">

    <table cellpadding="5" cellspacing="0">
        <tr valign="top">
            <td>
                <a href="javascript:void(0);" onclick="javascript:more_delicious();" class="more_delicious"></a>
            </td>
            <td>
                <a href="javascript:void(0)" onclick="javascript:more_reddit();" class="more_reddit"></a>
            </td>
        </tr>

        <tr valign="top">
            <td>
                <a href="javascript:void(0);" onclick="javascript:more_digg();" class="more_digg"></a>
            </td>
            <td>
                <a href="javascript:void(0);" onclick="javascript:more_furl();" class="more_furl"></a>
            </td>
        </tr>
        <tr valign="top">

            <td colspan="2">
                <a href="javascript:void(0);" onclick="javascript:more_stumbleupon();" class="more_stumbleupon"></a>
            </td>
        </tr>
    </table>
</div>


<script type="text/javascript" src="http://connect.facebook.net/en_US/all.js#appId=272790849411337&xfbml=1"></script>
<script type="text/javascript" src="http://platform.linkedin.com/in.js"></script>
<script type="text/javascript" src="https://apis.google.com/js/plusone.js"></script>

<script type="text/javascript" src="/javascript/ga_social_tracking.js"></script>

<script>
    var local_url;

    jQuery(document).ready(function () {
        jQuery(".google iframe").width('62px');
        
        _ga.trackSocial(null, 't1');
        
        
        _ga.trackSocial(null, 't2');
        


        if (/chrome/.test(navigator.userAgent.toLowerCase())) {
            jQuery('iframe').each(function() {
                var url = jQuery(this).attr("src");
                var result = url.search(/youtube/i);
                if (result != -1) {
                    result = url.indexOf('wmode=');
                    if (result == -1) {
                        result = url.indexOf('?');
                        if (result != -1) {
                            jQuery(this).attr("src", url + "&wmode=transparent");
                        } else {
                            jQuery(this).attr("src", url + "?wmode=transparent");
                        }
                    }
                }
            });
        }
    });

    function showSocialPopup(t, event, url) {
        local_url = url;
        t.after(jQuery("#socialPopup"));
        jQuery("#socialPopup").show();
        if (jQuery.browser.msie) {
            jQuery("#socialPopup").css("right", "-62px");
            jQuery("#socialPopup").bgiframe();
        }
        event.cancelBubble = true;
        if (event.stopPropagation) event.stopPropagation();
        return false;
    }

    jQuery(document).click(
            function () {
                jQuery("#socialPopup").hide();
            }
    );

    function more_delicious() {
        track_ga('delicious', 'share', encodeURIComponent(local_url));
        window.open('http://www.delicious.com/save?v=5&noui&jump=close&url=' + encodeURIComponent(local_url) + '&title=' + encodeURIComponent(document.title), 'delicious', 'toolbar=no,width=550,height=550');
        return false;
    }

    function more_reddit() {
        track_ga('reddit', 'share', encodeURIComponent(local_url));
        window.open('http://ru.reddit.com/submit?url=' + encodeURIComponent(local_url), 'reddit', 'toolbar=no,width=550,height=550');
        return false;
    }

    function more_digg() {
        track_ga('digg', 'share', encodeURIComponent(local_url));
        window.open('http://digg.com/submit?url=' + encodeURIComponent(local_url), 'digg', 'toolbar=no,width=550,height=550');
        return false;
    }

    function more_furl() {
        track_ga('furl', 'share', encodeURIComponent(local_url));
        window.open('http://www.furl.net/storeIt.jsp?u=' + encodeURIComponent(local_url), 'furl', 'toolbar=no');
        return false;
    }

    function more_stumbleupon() {
        window.open('http://www.stumbleupon.com/submit?url=' + encodeURIComponent(local_url), 'stumbleupon', 'toolbar=no');
        return false;
    }

</script>
</body>
</html>
</html>