<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="https://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Hustler Cash</title>
<link type="text/css" rel="stylesheet" href="css/hustler/ext/style.css" media="screen" />
<link type="text/css" rel="stylesheet" href="css/hustler/ext/jquery.fancybox-1.3.4.css" media="screen" />


<style>
/** SLIDESHOW **/
#nav a { background: url('nats_images/hustler/ext/number-gray-background.jpg') no-repeat; text-decoration: none; margin: 0 3px 0 3px; padding: 0 9px 2px 9px;}
#nav a.activeSlide { background:  url('nats_images/hustler/ext/number-blue-background.jpg') no-repeat; color: #FFF; }
#nav a:focus { outline: none; }
.slideshowcontrol { /*float:right; margin: -40px 20px 0 0; z-index: 2; display: block; position: relative;*/ position: absolute; bottom: 10px; right: 10px; }

/* auto complete webkit styles suck! */
/* #user:-webkit-autofill, #password:-webkit-autofill {background-color: white !important;color: #404040 !important;} */
#user:-webkit-autofill,
#password:-webkit-autofill {
    -webkit-box-shadow:0 0 0 50px #F7F7F7 inset; /* Change the color to your own background color */
    -webkit-text-fill-color: #333;
    height: 20px;
    line-height: 20px;
    position: relative;
    top: 5px;
}
.signup-form-basic { 
    margin: 7px 0 0 0;
    padding-top: 15px;
    padding-bottom: 15px;
    background-color: white;
    -moz-border-radius: 1px;
    -webkit-border-radius: 1px;
    border-radius: 1px;
    -webkit-box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 0 0 2px rgba(0,0,0,0.5);
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
}

</style>

<script type="text/javascript" src="jscript/hustler/ext/jquery.min.js"></script>
<script type="text/javascript" src="jscript/hustler/ext/jquery.cycle.all.min.js"></script>
<script type="text/javascript" src="jscript/hustler/ext/jquery.fancybox-1.3.4.pack.js"></script>
<script type="text/javascript" src="jscript/hustler/ext/jquery.easing-1.3.pack.js"></script>
<script type="text/javascript" src="jscript/hustler/ext/jqtransformplugin/jquery.jqtransform.js" ></script>

<script type="text/javascript"><!--
function preloadImagesFromDirectory(dir) {
    if(!dir) return;
    
    function getJSON(URL,success){
        // Create new function (within global namespace)
        // (With unique name):
        var uniqueID = 'json'+(+(new Date()));
            window[uniqueID] = function(data){
                success && success(data);
            };
        // Append new SCRIPT element to DOM:
        document.getElementsByTagName('body')[0].appendChild((function(){
            var script = document.createElement('script');
            script.type = 'text/javascript';
            script.src = URL.replace('callback=?','callback=' + uniqueID);
            return script;
        })());
    }
 
    function preload(srcArray) {
        for(var i = 0; i < srcArray.length; i++) {
            (new Image()).src = srcArray[i];
        }
    }
    
    // Get that JSON data:
    getJSON('scanImageDirectory.php?directory=' + encodeURIComponent(dir) + '&callback=?', function(data){
        return data.images ? preload( data.images ) : false;
    });
 
}

function checkForm() {
	if(document.loginForm.username.value == ''){
		alert('Username required');
		return false;
	}else if(document.loginForm.password.value == ''){
		alert('Password required');
		return false;
	}else if(document.loginForm.wm_agree.checked == false){
		alert('You must agree to the Terms and Conditions');
		return false;
	}else {
		return true;
	}
}
$(document).ready(function() {
	/*preloadImagesFromDirectory('html/images/');
	preloadImagesFromDirectory('html-websites/images/');*/
		
	$('.slideshow').cycle({ 
		fx:     'fade', 
		speed:  'slow', 
		timeout: 20000, 
		pager:  '#nav',
		next:   '#next-slide', 
		prev:   '#prev-slide'
	});

	$(".sites-popup").fancybox({
		'hideOnOverlayClick'		: false,
		'titleShow'					: false,
		'showCloseButton'			: false,
		'margin'					: 0,
		'padding'					: 0,
		onComplete : function() {
			
		}
	});

	$(".websites-popup").fancybox({
		'hideOnOverlayClick'		: false,
		'titleShow'					: false,
		'showCloseButton'			: false,
		'margin'					: 0,
		'padding'					: 0,
		onComplete : function() {
			
		}
	});
  $('#Submit_SignupInfo').attr('value','Create Account'); // somehow the basic signup function does not show button text!
  $('form').each(function (i) {   // disable autocomplete for basic signup form
    if ($(this).attr('name') == "signup_form") {
     $(this).attr('autocomplete','off');
    }
  });
  $('form').jqTransform({imgPath:'jscript/hustler/ext/jqtransformplugin/img2/'});

  // have to do fix on submit button in access page too! But has to work this way instead... (comes after jqTransform...) 
  $('button').each(function (i) {   // disable autocomplete for basic signup form
    if ($(this).attr('id') == "inline-search-submit") {
     $(this).html('<span><span>Login</span></span>');
    }
  });
});

function popupWindow(page, windowWidth, windowHeight, windowOptions) {
	
	var iMyWidth;
	var iMyHeight;
	
	//half the screen width minus half the new window width (plus 5 pixel borders).
	iMyWidth = (window.screen.width/2) - (windowWidth/2 + 10);
	
	//half the screen height minus half the new window height (plus title and status bars).
	iMyHeight = (window.screen.height/2) - (windowHeight/2 + 50);
	
	//Open the window.
	var win2 = window.open(page,"Window","width=" + windowWidth + ",height=" + windowHeight + ",left=" + iMyWidth + ",top=" + iMyHeight + ",screenX=" + iMyWidth + ",screenY=" + iMyHeight + "," + windowOptions);
	win2.focus();
}
--></script>

</head>
<body>

<div class="mainwrapper">

 <div align="center">
            <!-- TOP BAR START -->
           <div class="topbar">
        		<div class="topbar_center"><!-- ä centering div -->
                      <p>Hustler Cash - Promote the World Famous Hustler brand of high converting websites!</p>
                      <a href="external.php?page=signup&nats=MC4wLjU4LjEuMC4wLjAuMC4w" title="Sign up for an Account">
                      Sign up for an Account</a>
        		</div><!-- end centering div -->
           </div><!-- TOP BAR END -->
           
  <div class="subwrapper">
    

    
    <!-- HEADER START -->
     <div class="header">

	 <form method="post" name="loginForm" action="internal.php"><!-- TODO: checkForm() works??? onsubmit="return checkForm();" -->
      <div class="logo"><a href="index.php" title="Hustler Cash"><img src="nats_images/hustler/ext/hustler-cash.png" alt="Hustler Cash" /></a></div>
      <!-- <p>PROMOTE THE BEST ADULT ONLINE CONTENT</p> -->
      
      <div class="login">
       <ul>
        <li>
         Username<br />
         <input type="text" name="user" id="user" size="15" />
        </li>
        <li>
         Password<br />
         <input type="password" name="pass" id="password" size="15" />
        </li>
        <li>
        <br/>
        <input type=submit id="inline-search-submit" value="Login" />

        </li>
       </ul>
       <div class="clear"></div>
       <div style="margin-left: 10px;"><a href="external.php?page=password">Forgot Password</a></div>
      </div>
	  <!-- <input type="submit" style="display:none;"/> -->
	 </form>
     </div>
    <!-- HEADER END -->
    
    <!-- NAVIGATION START -->
     <div class="navigation">
      <ul>
       <li><a href="external.php?page=index&nats=MC4wLjU4LjEuMC4wLjAuMC4w" title="Home">Home</a></li>
       <li><a href="external.php?page=programs&nats=MC4wLjU4LjEuMC4wLjAuMC4w" title="Programs">Programs</a></li>
       <li><a href="external.php?page=sites&nats=MC4wLjU4LjEuMC4wLjAuMC4w" title="Websites">Websites</a></li>
<!--        <li><a href="external.php?page=marketing&nats=MC4wLjU4LjEuMC4wLjAuMC4w" title="Marketing Tools">Marketing Tools</a></li> -->
       <li><a href="external.php?page=faq&nats=MC4wLjU4LjEuMC4wLjAuMC4w" title="FAQ">FAQ</a></li>
       <li><a href="external.php?page=support&nats=MC4wLjU4LjEuMC4wLjAuMC4w" title="Support">Support</a></li>
       <li><a href="external.php?page=resources&nats=MC4wLjU4LjEuMC4wLjAuMC4w" title="Resources">Resources</a></li>
       <li class="signupmenu"><a href="external.php?page=signup&nats=MC4wLjU4LjEuMC4wLjAuMC4w" title="Sign Up">Sign Up</a></li>
      </ul>
     </div>
    <!-- NAVIGATION END -->
<!-- styles for news section -->
<style type="text/css">
    .subsection_topic_date {
        margin-top: 2px; font-size: 10px; padding-right: 10px; font-weight:bold;
    }
    .subsection_article_links {
        margin: 5px 0 0 15px; text-align:left;
    }
    .subsection_topic {
        background: url(../nats_images/bullet_news.png) no-repeat center left; padding-left: 15px;
        color:#2b7baa; font-weight:700; margin-top: 13px; float: left; width: inherit; font: 10px "Tahoma";
    }
    .subsection_article_content {
        border-top: 1px #e2e2e2 solid; color:#333333; text-align:left; margin-left: 15px;
        padding-right: 20px; margin-top: 4px; font: 10px "Tahoma";
    }
    .break { clear:both; font-size:0; line-height:0.0; height:0; margin:0; padding:0;}
    .day { font-size: 12px; }
    .subs { letter-spacing: normal; vertical-align: super; }
    .year { letter-spacing: 1px; vertical-align: super; font-family: Tahoma; color:#000; font-size: 9px; }
</style>

<!-- slideshow options -->
<script>
$('#slides').cycle({
    speed:   300, 
    timeout: 5000, 
    next:   '#slides', 
    pause:   1 
});
</script>


<div class="main-container home-banner">
    
    <!-- BANNER START -->
     <div class="banner" style="position: relative; z-index: 0;">
      <!-- SLIDESHOW -->
      <div id="slides" class="slideshow" style="z-index: 1; float: left; position: absolute; left: 0px;">
		<!--<a href="external.php?page=signup&nats=MC4wLjU4LjEuMC4wLjAuMC4w"><img src="nats_images/hustler/ext/larry_banner.jpg"></a>-->
		<!--<a href="external.php?page=signup&nats=MC4wLjU4LjEuMC4wLjAuMC4w"><img src="nats_images/hustler/ext/paysites.jpg"></a>-->
		<!--<a href="external.php?page=signup&nats=MC4wLjU4LjEuMC4wLjAuMC4w"><img src="nats_images/hustler/ext/mobile.jpg"></a>-->
		<!--<a href="external.php?page=signup&nats=MC4wLjU4LjEuMC4wLjAuMC4w"><img src="nats_images/hustler/ext/PerSignUp_PAYOUTBANNERS.jpg"></a>-->
		<!--<a href="external.php?page=signup&nats=MC4wLjU4LjEuMC4wLjAuMC4w"><img src="nats_images/hustler/ext/Revshare_PAYOUTBANNERS.jpg"></a>-->
		
<a href="external.php?page=signup&nats=MC4wLjU4LjEuMC4wLjAuMC4w">
<img src="https://hustlercash.com/nats_images/hustler/ext/RevShare50.jpg">
</a>
<!-- <a href="external.php?page=signup&nats=MC4wLjU4LjEuMC4wLjAuMC4w">
<img src="https://hustlercash.com/nats_images/hustler/ext/PerSignUp30.jpg">
</a> -->
		
     </div>
	 <div class="slideshowcontrol">
		 <div class="leftside" id="prev-slide"><img src="nats_images/hustler/ext/l-arrow.gif" /></div>
		 <!-- <div id="nav" class="leftside"></div> -->
		 <div class="leftside" id="next-slide"><img src="nats_images/hustler/ext/r-arrow.gif" /></div>
	 </div>
     </div>
    <!-- BANNER END -->
    
    <!-- MID CONTENT START -->
    <div class="midcontent">
    



<!-- /////////////////////////left////////////////////////////////////////// -->
<!--     this "left" section is display:none in the css file
    hustlercash.com/nats/www/css/hustler/ext
    https://www.hustlercash.com/css/hustler/ext/style.css -->
     <div class="left">
       <h1>Whats New | <i>News & Updates</i></h1>
       <div style="height: 270px; overflow-y: auto; overflow-x: hidden;">
	       

		                <p class="playblue"><img src="nats_images/hustler/ext/play-red.jpg" align="left" /></p>
                <div class="holder">     
                     <!--div class="subsection_topic_date">Apr <span class="day">12</span><span class="subs"></span>, <span class="year">2023</span></div-->
                     <div class="subsection_topic_date">Apr <span class="day">12</span><span class="subs"></span>, <span class="day">2023</span></div>
		     <p>New Banners and Videos</p>
		     <div class="subsection_article_content">New image banners and video banners added. Please check the latest additions based on item ID.</div>
		     <div class="subsection_article_links"><a href="internal.php?page=news&id=63"><img src="nats_images/link_readmore.png" alt="Read More" /></a></div>
                </div>
		                <p class="playblue"><img src="nats_images/hustler/ext/play-red.jpg" align="left" /></p>
                <div class="holder">     
                     <!--div class="subsection_topic_date">Feb <span class="day">26</span><span class="subs"></span>, <span class="year">2018</span></div-->
                     <div class="subsection_topic_date">Feb <span class="day">26</span><span class="subs"></span>, <span class="day">2018</span></div>
		     <p>$17.95 Join Banners</p>
		     <div class="subsection_article_content">I have added some hot new $17.95 join banners! Get them while they are still hot!</div>
		     <div class="subsection_article_links"><a href="internal.php?page=news&id=62"><img src="nats_images/link_readmore.png" alt="Read More" /></a></div>
                </div>
		                <p class="playblue"><img src="nats_images/hustler/ext/play-red.jpg" align="left" /></p>
                <div class="holder">     
                     <!--div class="subsection_topic_date">Feb <span class="day"> 7</span><span class="subs"></span>, <span class="year">2018</span></div-->
                     <div class="subsection_topic_date">Feb <span class="day"> 7</span><span class="subs"></span>, <span class="day">2018</span></div>
		     <p>Lana Rhoades Flithy Fantasies</p>
		     <div class="subsection_article_content">Check out our latest title Lana Rhoades Filthy Fantasies. We have banners, clips and landing pages!</div>
		     <div class="subsection_article_links"><a href="internal.php?page=news&id=61"><img src="nats_images/link_readmore.png" alt="Read More" /></a></div>
                </div>
		                <p class="playblue"><img src="nats_images/hustler/ext/play-red.jpg" align="left" /></p>
                <div class="holder">     
                     <!--div class="subsection_topic_date">Sep <span class="day">19</span><span class="subs"></span>, <span class="year">2016</span></div-->
                     <div class="subsection_topic_date">Sep <span class="day">19</span><span class="subs"></span>, <span class="day">2016</span></div>
		     <p>Angels in the Centerfold</p>
		     <div class="subsection_article_content">Hey guys,<br />
You said it and we listened! Everyone is all excited about our hot new release Angels in the Centerfold starring Jessa Rhodes, and Vanessa VeraCruz as well as Jessica Ryan. I have loaded up banners, FHGs, zip...</div>
		     <div class="subsection_article_links"><a href="internal.php?page=news&id=60"><img src="nats_images/link_readmore.png" alt="Read More" /></a></div>
                </div>
		                <p class="playblue"><img src="nats_images/hustler/ext/play-red.jpg" align="left" /></p>
                <div class="holder">     
                     <!--div class="subsection_topic_date">Jul <span class="day">20</span><span class="subs"></span>, <span class="year">2016</span></div-->
                     <div class="subsection_topic_date">Jul <span class="day">20</span><span class="subs"></span>, <span class="day">2016</span></div>
		     <p>Barely Legal</p>
		     <div class="subsection_article_content">We are adding all new pics, zip files, FHGs for HUSTLER's Barely Legal. If you have teen traffic, give it a try. And as always hit me up if you require any customs tools holly@hustlercash.com</div>
		     <div class="subsection_article_links"><a href="internal.php?page=news&id=59"><img src="nats_images/link_readmore.png" alt="Read More" /></a></div>
                </div>
		                <p class="playblue"><img src="nats_images/hustler/ext/play-red.jpg" align="left" /></p>
                <div class="holder">     
                     <!--div class="subsection_topic_date">Jun <span class="day"> 2</span><span class="subs"></span>, <span class="year">2016</span></div-->
                     <div class="subsection_topic_date">Jun <span class="day"> 2</span><span class="subs"></span>, <span class="day">2016</span></div>
		     <p>New ZIP Files Added</p>
		     <div class="subsection_article_content">We have some great zip files for The Donald, This Ain't Fallout, This Ain't Game of Thrones, and more. As always if you have a special request hit us up personally.<br />
<br />
Holly <br />
hruprecht@lfp.com<br />
Skype...</div>
		     <div class="subsection_article_links"><a href="internal.php?page=news&id=58"><img src="nats_images/link_readmore.png" alt="Read More" /></a></div>
                </div>
		                <p class="playblue"><img src="nats_images/hustler/ext/play-red.jpg" align="left" /></p>
                <div class="holder">     
                     <!--div class="subsection_topic_date">May <span class="day">18</span><span class="subs"></span>, <span class="year">2016</span></div-->
                     <div class="subsection_topic_date">May <span class="day">18</span><span class="subs"></span>, <span class="day">2016</span></div>
		     <p>Fallout Banners!</p>
		     <div class="subsection_article_content">Log in grab your new $1 Fallout banners. Got gamer traffic? These are perfect! Also available new Game of Thrones FHGs~ and as always if you need something hit us up! <br />
hruprecht@lfp.com</div>
		     <div class="subsection_article_links"><a href="internal.php?page=news&id=57"><img src="nats_images/link_readmore.png" alt="Read More" /></a></div>
                </div>
				<br class="break" />	

	       
       </div>
     </div>
<!-- /////////////////////////end left////////////////////////////////////////// -->




     <div class="right">
      <div style="float:left;padding-right:6px;"><h1>Check out our Program | <span>On</span></h1></div>
      <div><img src="nats_images/hustler/ext/nats_logo.jpg"></div>
      <ul>
       <li><img src="nats_images/hustler/ext/check-red.jpg" align="absmiddle" /> Promote the Biggest Brand in Adult</li>
       <li><img src="nats_images/hustler/ext/check-red.jpg" align="absmiddle" /> Award Winning Exclusive Content</li>
       <li><img src="nats_images/hustler/ext/check-red.jpg" align="absmiddle" /> Brand New Promo Tools</li>
       <li><img src="nats_images/hustler/ext/check-red.jpg" align="absmiddle" /> Reliable Stats</li>
       <li><img src="nats_images/hustler/ext/check-red.jpg" align="absmiddle" /> Regular On-time Payouts</li>
       <li><img src="nats_images/hustler/ext/check-red.jpg" align="absmiddle" /> Cascading Billing</li>
       <li><img src="nats_images/hustler/ext/check-red.jpg" align="absmiddle" /> Brand New HUSTLER Site</li>
      </ul>
      <div><a href="external.php?page=signup&nats=MC4wLjU4LjEuMC4wLjAuMC4w" title="Sign up for a HUSTLER Account Now" class="button-blue sign-up">Sign up for a HUSTLER Account Now</a></div>
    </div>

     

    </div>
    <!-- MID CONTENT END -->
    
    <p class="btm-banner" style="padding:0; margin:20px 0 13px 0;"><a href="external.php?page=signup&nats=MC4wLjU4LjEuMC4wLjAuMC4w" target="_new"><img src="https://www.hustlercash.com/nats_images/hustler/ext/bottom-bnner2.jpg" /></a></p>
<div class="bot-border"></div>

    <!-- FOOTER START -->
     <div class="footer">
     <a href="external.php?page=index&nats=MC4wLjU4LjEuMC4wLjAuMC4w" title="HOME">HOME</a> |
     <a href="external.php?page=programs&nats=MC4wLjU4LjEuMC4wLjAuMC4w" title="OUR PROGRAMS">PROGRAMS</a> |
     <a href="external.php?page=sites&nats=MC4wLjU4LjEuMC4wLjAuMC4w" title="OUR SITES">WEBSITES</a> |
     <a href="external.php?page=marketing&nats=MC4wLjU4LjEuMC4wLjAuMC4w" title="REWARDS">MARKETING TOOLS</a>
     | <a href="external.php?page=faq&nats=MC4wLjU4LjEuMC4wLjAuMC4w" title="FAQ">FAQ</a> |
     <!--<a href="external.php?page=support&nats=MC4wLjU4LjEuMC4wLjAuMC4w" title="SUPPORT">SUPPORT</a>--> |
     <a href="external.php?page=resources&nats=MC4wLjU4LjEuMC4wLjAuMC4w" title="RESOURCES">RESOURCES</a> |
     <a href="external.php?page=signup&nats=MC4wLjU4LjEuMC4wLjAuMC4w" title="SIGN UP NOW!">SIGN UP</a> |

     <a href="https://hustlerhollywood.com/collections/sex-toys" title="HUSTLER STORE" target="_blank">HUSTLER SEX TOYS</a>

     <br />
     <p><span><u><a href="https://www.hustler.com/2257.html" target="_new">18 U.S. 2257 Record-Keeping Requirements Compliance Statement</a></u><br />
    All models appearing on this site are 18 older. &copy 2010<br />
    LFP Internet Group, LLC, All Rights Reserved LFP Internet Group, LLC, 8484 Wilshire Blvd. #900, Beverly Hills, CA 90211 USA</span></p>
    
    <div class="footer3">
      <div class="logo"><img src="nats_images/hustler/ext/mini-logo01.jpg" /> <img src="nats_images/hustler/ext/mini-logo02.jpg" /> <img src="nats_images/hustler/ext/mini-logo03.jpg" /></div>
      <p class="text">We support RTA and ICRA. Our websites are properly labled to help protect minors from accessing content that may be inappropriate for their viewing.</p>
    </div>
     </div>
     <!-- FOOTER END -->
    
    <p>&nbsp;</p>
    
  </div>
 </div>
</div>
</body>
</html>