HTTP/1.1 200 OK
Date: Sun, 12 Feb 2012 15:36:52 GMT
Server: Apache/2.2.3 (Red Hat)
Vary: Cookie,Accept-Encoding
X-LiveStats-Count: False
Content-Length: 105224
Content-Type: text/html; charset=utf-8
Set-Cookie: sess=; Domain=.caller.com; Max-Age=0; Path=/;
Set-Cookie: 45519=168; Domain=.caller.com; Max-Age=2678400; Path=/;
Connection: close

<!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" xmlns:fb="http://www.facebook.com/2008/fbml" xmlns:og="http://opengraphprotocol.org/schema/" xmlns:nitro="http://www.bunchball.com/nitro">
<!--
  
    
    ROLE = prod.
-->


	
	
	
	
	
	

	
	
	
	





















<head>
	
		
		<script type="text/javascript">
			var jSINGconf = {};
			jSINGconf.theme = {
				
					CITY: 'Corpus Christi',
				
					SITE_NAME: 'Corpus Christi Caller Times',
				
					VIDEO_MEDIA_URL: 'http://media.scrippsnewspapers.com/corp_assets/asphalt',
				
					SHOW_COPYRIGHT: 'True',
				
					SITE_MEDIA_URL: 'http://web.caller.com/static/ccct/asphalt/prod',
				
					REGION: 'Corpus Christi',
				
					MOBILE_SITE_NAME: 'Corpus Christi Caller Times Mobile',
				
					SITE_URL: 'http://www.caller.com/',
				
					STATE: 'Texas',
				
					STATE_ABBR: 'TX',
				
					MOBILE_SITE_URL: 'http://m.caller.com',
				
					CORP_MEDIA_URL: 'http://media.caller.com/corp_assets/asphalt',
				
					SITE_ABBR: 'ccct'
				
			};
			jSINGconf.ajax = {
				loaderImageURL: 'http://media.caller.com/corp_assets/asphalt/img/ajax-loader.gif'
			};
			jSINGconf.maps = {
				yahooMapList: [] // Array for yahoo maps to be registered
			};
			jSINGconf.playlistVideos = {};
			jSINGconf.playlistPlayers = {};
			jSINGconf.videoPlayers = {};
			jSINGconf.socialShare = {
				socialData: [] // Array for content to be shared via social links
			};
		</script>
	
	
	
		
		
		<meta name="viewport" content="width=device-width,user-scalable=yes" />
<script src="http://media.caller.com/corp_assets/asphalt/js/jSING.mobile-redirect.yui.js" type="text/javascript"></script>
		
	
	
	
	
		
		
			<!-- ad_manager --><!-- target.obj_name = story -->
<script type="text/javascript"><!--

            function ReadCookie(cookieName) {
                var theCookie="" + document.cookie ;
                var ind = theCookie.indexOf( cookieName ) ;
                if( ind == -1 || cookieName == "" ) return "" ; 
                var ind1 = theCookie.indexOf( ';', ind ) ;
                if( ind1 == -1) ind1 = theCookie.length ; 
                return unescape( theCookie.substring( ind + cookieName.length + 1, ind1 ) ) ;
            }
            function ReadZagi( zagiName) {
                var zagi = ReadCookie( 'zagi' );
                var ind = zagi.indexOf( zagiName );
                if( ind == -1 || zagiName == "" ) return "" ;
                var ind1 = zagi.indexOf( '&', ind ) ;
                if( ind1 == -1 ) ind1 = zagi.length - 1;
                return zagi.substring( ind + zagiName.length + 1, ind1 ) ;
            }
            // SITE-LEVEL PARAMETERS
            yld_mgr = {};
            yld_mgr.pub_id="22219982883";
            yld_mgr.site_name="Corpus Christi Caller Times";
            yld_mgr.container_type="js";//Hardcoded

            //OPTIONAL PARAMETERS THAT DESCRIBE THE TARGETED CONTENT 
            // <class 'django.models.news.Story'>
            /* IceRays falter down the stretch in loss to Bulls  */
            yld_mgr.content_topic_id_list=[ "20354001"]; 
            // [Sports (NPC)]
            yld_mgr.site_section_name_list=[ "Article"]; // mapped from view decorator and info_dicts by the yahoo SiteSectionTaxonomyMiddleware
            yld_mgr.content_lang="en-US"; //Hardcoded


            //OPTIONAL DISABLE CONTENT SEND 
            yld_mgr.disable_content_send="0"; 
 
            //OPTIONAL PARAMETERS FOR GEOGRAPHIC TARGETING 
            var zip = ReadZagi( 'zip_code' );
            if( zip ) { yld_mgr.user_zip = zip ; }
            var city = ReadZagi( 'city' ) ;
            if( city ) { yld_mgr.user_city = city ; }
            var state = ReadZagi( 'state' ) ;
            if( state ) { yld_mgr.user_state = state ; }
            
            //OPTIONAL PARAMETERS FOR DEMOGRAPHIC TARGETING 
            var age = ReadZagi( 'age' ) ;
            function AgeToRange( years_old ) {
                if( years_old < 13 ) { return "" ; }
                else if( years_old < 18 ) { return "13-17" ; }
                else if( years_old < 21 ) { return "18-20" ; }
                else if( years_old < 25 ) { return "21-24" ; }
                else if( years_old < 30 ) { return "25-29" ; }
                else if( years_old < 35 ) { return "30-34" ; }
                else if( years_old < 40 ) { return "35-39" ; }
                else if( years_old < 45 ) { return "40-44" ; }
                else if( years_old < 50 ) { return "45-49" ; }
                else if( years_old < 55 ) { return "50-54" ; }
                else if( years_old < 60 ) { return "55-59" ; }
                else if( years_old < 65 ) { return "60-64" ; }
                else if( years_old < 100 ){ return "65-100" ; }
                return "100+" ;
            }
            var gender = ReadZagi( 'gender' )=='M'?'Male':ReadZagi('gender')=='F'?'Female':''
            if( gender ) yld_mgr.user_gender = gender ;
            if( age ) yld_mgr.user_age = AgeToRange( age ) ;
            function IncToRange( inc ) {
                var idx = 0 ;
                var numstr = '' ;
                for( idx = 0; idx < inc.length; idx ++ ) 
                    if( ! isNaN( parseInt(inc[idx]) ) ) numstr += inc[idx] ;
                inc = parseInt( numstr ) ;
                if( isNaN( inc ) ) { return '' ; }
                else if( inc <= 24999 ) { return '1-24999' ; }
                else if( inc <= 34999 ) { return '25000-34999' ; }
                else if( inc <= 49999 ) { return '35000-49999' ; }
                else if( inc <= 74999 ) { return '50000-74999' ; }
                else if( inc <= 99999 ) { return '75000-99999' ; }
                else if( inc <=149999 ) { return '100000-149999' ; }
                else if( inc <=249999 ) { return '150000-249999' ; }
                else if( inc >=250000 ) { return '250000-' ; }
            }
            var inc_range = IncToRange( ReadZagi( 'income' ) ) ;
            if( inc_range ) yld_mgr.user_income=inc_range ;


            // define the slots
            yld_mgr.slots = {} ;
            
//--> </script>
<!-- End ad manager -->
			
			
			
		

		
	
			
			<!-- stage register_ad_pos -->
			<script type="text/javascript"><!--
            yld_mgr.slots.SUPERSTITIAL = {};
             
            //REQUIRED PARAMETERS 
            yld_mgr.slots.SUPERSTITIAL.request_type="ac"; // ac=ad call, bc=beacon call, fc=forecast call
            yld_mgr.slots.SUPERSTITIAL.ad_size_list=["720x300", "720x90"  ]; // SUPERSTITIAL

            //OPTIONAL PARAMETERS THAT DESCRIBE THE AD 
            yld_mgr.slots.SUPERSTITIAL.ad_delivery_mode="ipatf"; // pos = above; ipatf = above the fold, ipbtf = below the fold, ipstf = spans the fold
            yld_mgr.slots.SUPERSTITIAL.clk_dest="_blank"; //Hardcoded
            yld_mgr.slots.SUPERSTITIAL.ad_output_encoding="utf-8"; //Hardcoded
            // no custom categories
            yld_mgr.slots.SUPERSTITIAL.content_type_list=[ "fn_news" ]; 

        
            //--> </script> 
			<script type="text/javascript"><!--
            yld_mgr.slots.BIGBOX_1 = {};
             
            //REQUIRED PARAMETERS 
            yld_mgr.slots.BIGBOX_1.request_type="ac"; // ac=ad call, bc=beacon call, fc=forecast call
            yld_mgr.slots.BIGBOX_1.ad_size_list=["300x250"  ]; // BIGBOX

            //OPTIONAL PARAMETERS THAT DESCRIBE THE AD 
            yld_mgr.slots.BIGBOX_1.ad_delivery_mode="ipatf"; // pos = above; ipatf = above the fold, ipbtf = below the fold, ipstf = spans the fold
            yld_mgr.slots.BIGBOX_1.clk_dest="_blank"; //Hardcoded
            yld_mgr.slots.BIGBOX_1.ad_output_encoding="utf-8"; //Hardcoded
            // no custom categories
            yld_mgr.slots.BIGBOX_1.content_type_list=[ "fn_news" ]; 

        
            //--> </script> 

			
	
	
				<script type="text/javascript"><!--
            yld_mgr.slots.BIGBOX_2 = {};
             
            //REQUIRED PARAMETERS 
            yld_mgr.slots.BIGBOX_2.request_type="ac"; // ac=ad call, bc=beacon call, fc=forecast call
            yld_mgr.slots.BIGBOX_2.ad_size_list=["300x250"  ]; // BIGBOX

            //OPTIONAL PARAMETERS THAT DESCRIBE THE AD 
            yld_mgr.slots.BIGBOX_2.ad_delivery_mode="ipbtf"; // pos = below; ipatf = above the fold, ipbtf = below the fold, ipstf = spans the fold
            yld_mgr.slots.BIGBOX_2.clk_dest="_blank"; //Hardcoded
            yld_mgr.slots.BIGBOX_2.ad_output_encoding="utf-8"; //Hardcoded
            // no custom categories
            yld_mgr.slots.BIGBOX_2.content_type_list=[ "fn_news" ]; 

        
            //--> </script> 			
			


			<script type="text/javascript"><!--
            yld_mgr.slots.WEATHER_SPONSOR = {};
             
            //REQUIRED PARAMETERS 
            yld_mgr.slots.WEATHER_SPONSOR.request_type="ac"; // ac=ad call, bc=beacon call, fc=forecast call
            yld_mgr.slots.WEATHER_SPONSOR.ad_size_list=["120x30"  ]; // WEATHER_SPONSOR

            //OPTIONAL PARAMETERS THAT DESCRIBE THE AD 
            yld_mgr.slots.WEATHER_SPONSOR.ad_delivery_mode="ipbtf"; // pos = below; ipatf = above the fold, ipbtf = below the fold, ipstf = spans the fold
            yld_mgr.slots.WEATHER_SPONSOR.clk_dest="_blank"; //Hardcoded
            yld_mgr.slots.WEATHER_SPONSOR.ad_output_encoding="utf-8"; //Hardcoded
            // no custom categories
            yld_mgr.slots.WEATHER_SPONSOR.content_type_list=[ "fn_news" ]; 

        
            //--> </script> 
			<script type="text/javascript"><!--
            yld_mgr.slots.SEARCH_RESULTS_SPONSOR_1 = {};
             
            //REQUIRED PARAMETERS 
            yld_mgr.slots.SEARCH_RESULTS_SPONSOR_1.request_type="ac"; // ac=ad call, bc=beacon call, fc=forecast call
            yld_mgr.slots.SEARCH_RESULTS_SPONSOR_1.ad_size_list=["120x30"  ]; // SEARCH_RESULTS_SPONSOR

            //OPTIONAL PARAMETERS THAT DESCRIBE THE AD 
            yld_mgr.slots.SEARCH_RESULTS_SPONSOR_1.ad_delivery_mode="ipatf"; // pos = above; ipatf = above the fold, ipbtf = below the fold, ipstf = spans the fold
            yld_mgr.slots.SEARCH_RESULTS_SPONSOR_1.clk_dest="_blank"; //Hardcoded
            yld_mgr.slots.SEARCH_RESULTS_SPONSOR_1.ad_output_encoding="utf-8"; //Hardcoded
            // no custom categories
            yld_mgr.slots.SEARCH_RESULTS_SPONSOR_1.content_type_list=[ "fn_news" ]; 

        
            //--> </script> 
			
			<!-- End register_ad_pos -->
		
	
	<script type="text/javascript"><!--
            yld_mgr.slots.LEADERBOARD_1 = {};
             
            //REQUIRED PARAMETERS 
            yld_mgr.slots.LEADERBOARD_1.request_type="ac"; // ac=ad call, bc=beacon call, fc=forecast call
            yld_mgr.slots.LEADERBOARD_1.ad_size_list=["728x90"  ]; // LEADERBOARD

            //OPTIONAL PARAMETERS THAT DESCRIBE THE AD 
            yld_mgr.slots.LEADERBOARD_1.ad_delivery_mode="ipatf"; // pos = above; ipatf = above the fold, ipbtf = below the fold, ipstf = spans the fold
            yld_mgr.slots.LEADERBOARD_1.clk_dest="_blank"; //Hardcoded
            yld_mgr.slots.LEADERBOARD_1.ad_output_encoding="utf-8"; //Hardcoded
            // no custom categories
            yld_mgr.slots.LEADERBOARD_1.content_type_list=[ "fn_news" ]; 

        
            //--> </script> 


		



		<script type="text/javascript" src="http://e.yieldmanager.net/script.js"></script>
	
	
	
	
	<!-- META -->
	<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
	<meta name="author" content="Corpus Christi Caller-Times and Corpus Christi Caller Times" />
	<meta name="description" content="For large stretches of Friday night&#39;s game, the IceRays showed they could compete with the first-place team in their division. " />
	<meta name="copyright" content="Copyright (c) 2012 Corpus Christi Caller-Times. All Rights Reserved." />
	<meta property="fb:app_id" content="336616136443" />
	
	
	<meta property="og:title" content="IceRays falter down the stretch in loss to Bulls " /> 
	<meta property="og:site_name" content="Corpus Christi Caller Times" /> 
	<meta property="og:type" content="article" /> 
	<meta property="og:url" content="http://www.caller.com/news/2011/oct/07/icerays-falter-down-the-stretch-in-loss-to-bulls/" /> 
	<meta property="og:description" content="For large stretches of Friday night&#39;s game, the IceRays showed they could compete with the first-place team in their division. " /> 
	
	<meta property="og:image" content="http://media.caller.com/corp_assets/asphalt/_sites/ccct/img/favicon.jpg" />
	
	
	<meta property="objectId" content="111741">

	
	<meta name="google-site-verification" content="MuRZqQr_-hFEMbggjg0PZ33LXip9oqpX94LOd97baaE" />
	
	<title>IceRays falter down the stretch in loss to Bulls  &raquo; Corpus Christi Caller-Times</title>
	
	
		<link rel="icon" href="http://media.caller.com/corp_assets/asphalt/_sites/ccct/img/favicon.ico" type="image/x-icon" />
		<link rel="shortcut" href="http://media.caller.com/corp_assets/asphalt/_sites/ccct/img/favicon.ico" type="image/x-icon" />
	
	
	
	<!-- CSS -->
		
			<link href="http://media.caller.com/corp_assets/asphalt/css/base/base.yui.2012-01-31_13-26-09.css" rel="stylesheet" type="text/css" /> 
			<style type="text/css" media="only screen and (max-device-width: 768px)">
				.primary_nav li a, #verticals_nav li a {
					margin-right: 27px;
				}
			</style>
		
		

			
			<link href="http://media.caller.com/corp_assets/asphalt/_sites/ccct/css/ccct.css" rel="stylesheet" type="text/css" />
		

		
			
				<!--[if IE 6]>
					<link href="http://media.caller.com/corp_assets/asphalt/css/ie6.css" rel="stylesheet" type="text/css" />
				<![endif]-->

				<!--[if IE 7]>
					<link href="http://media.caller.com/corp_assets/asphalt/css/ie7.css" rel="stylesheet" type="text/css" />
				<![endif]-->
				
				<!--[if IE 8]>
					<link href="http://media.caller.com/corp_assets/asphalt/css/ie8.css" rel="stylesheet" type="text/css" />
				<![endif]-->
			
			
			

				
				<!--[if IE 6]>
					<link href="http://media.caller.com/corp_assets/asphalt/_sites/ccct/css/ccct_ie6.css" rel="stylesheet" type="text/css" />
				<![endif]-->
				<!--[if IE 7]>
					<link href="http://media.caller.com/corp_assets/asphalt/_sites/ccct/css/ccct_ie7.css" rel="stylesheet" type="text/css" />
				<![endif]-->
			
<link href="http://web.caller.com/ellington/images/ns/ns2.css" rel="stylesheet" type="text/css" />

			
		

	
	
	
	<script type='text/javascript'>var _sf_startpt=(new Date()).getTime()</script>

	
		<script type='text/javascript'>var _sf_startpt=(new Date()).getTime()</script>

	
		<link rel="alternate"
			title="RSS feed of all Corpus Christi Caller Times headlines"
			href="/feeds/headlines/"
			type="application/rss+xml" />
		
	
	
	

</head>

<body class="default_body">
	
	
<!-- stats tag ['CCCT'] -->
<script type="text/javascript" src="http://apptap.scripps.com/apptap3?site=CCCT&amp;app=djeff&amp;path=/sports/professional/article/icerays-falter-down-the-stretch-in-loss-to-bulls&amp;title=IceRays falter down the stretch in loss to Bulls &amp;k=v&amp;topic=Sports+%28NPC%29"></script><script>
                    s.prop50 = "Sports/IceRays";
                    s.prop51 = "Sports/Local Sports";
                    
                    </script><script type="text/javascript" >apptap();</script>

<script type="text/javascript">document.body.className += " hasJS"</script>
	



	

	
	<div class="adtag" id="SUPERSTITIAL"><script>yld_mgr.place_ad_here("SUPERSTITIAL");</script> </div>


<div id="advertising_wrapper" class="default ggnoads">
	
	
	    <div id="advertising">
		
			
		
			<div id="leaderboard">
				<div class="adtag" id="LEADERBOARD_1"><script>yld_mgr.place_ad_here("LEADERBOARD_1");</script> </div>
			</div> <!-- end #leaderboard -->
		
		</div> <!-- end #advertising -->
	
	
</div> <!-- end #advertising_wrapper -->
<div id="utilities_wrapper">
			
	<div id="utilities">
		
		<ul id="site_services">
			
				<li><a href="/accounts/login/" id="site_services_login"><strong>Login</strong></a> |</li>
			
			<li><a href="/accounts/profile/edit/">Manage Account</a> |</li>
			<li><a href="http://m.caller.com">Mobile</a> |</li>
			
<li><a href="/sitemap/" title="Site Map"> Site Map</a> |</li>
<li><a href="/subscribe/" title="Subscriber Services"> Subscribe</a> |</li>
<li><a href="/e-edition/" title="e-Edition Digital Newspaper"> e-Edition</a> |</li>
<li><a href="/staff/" title="Contact Us"> Contact Us</a> |</li>
<li><a href="/breakingnews/" title="Breaking News"> Breaking News</a></li>

		</ul>
		
		
		<div id="global_site_login" class="preventFOUC">
		
			
						<div class="submit_form_alerts_global">
							<form action="/accounts/login/?next=/news/2011/oct/07/icerays-falter-down-the-stretch-in-loss-to-bulls/" method="post" id="loginform1">					
								<div class="global_login_container_left">
											
											<label for="global_username">
												<span class="global_submit_label_username">User Name:</span>
											</label>
											
											<input id="global_username" class="vTextField required" name="username" size="17" value="" maxlength="75" def="" type="text" tabindex="1" />
											<input type="image" name="image" src="http://media.caller.com/corp_assets/asphalt/_sites/ccct/img/buttons/global_login_btn.gif" title="Login" alt="Login" class="global_login_button" border="0"/>
											<br/>
											<label for="global_password">
												<span class="global_submit_label_password">Password:</span>
											</label>
											
											<input id="global_password" class="vPasswordField required" name="password" size="17" value="" maxlength="30" def="" type="password" style="margin-top:12px;" tabindex="2" />
											
											<span class="global_formtip"><a href="/accounts/password_reset/">Forgotten your password?</a>&nbsp;|
											
											<a href="/accounts/register/">Create an account</a></span>
									</div>
								
									
										<div class="global_login_container_right">
											 <span class="global_rpx_login_text"><a class="rpxnow" onclick="return false;" href="https://login.caller.com/openid/v2/signin?token_url=http%3A%2F%2Fwww.caller.com%2Faccounts%2Fauth%2F?previous=/news/2011/oct/07/icerays-falter-down-the-stretch-in-loss-to-bulls/">Register or log in using your account on these websites.</a></span>
											<div class="connect_icons">
	                                                                                
	                                                                                
	                                                                                <a id="facebook_connect" class="" href="" onclick="window.open('https://login.caller.com/facebook/connect_start?ext_perm=publish_stream,email&token_url=http%3A%2F%2Fwww.caller.com%2Faccounts%2Fauth%2F%3Fprevious=/news/2011/oct/07/icerays-falter-down-the-stretch-in-loss-to-bulls/%26popup=true','rpxnow','width=800,height=550'); return false;"><img src="http://media.caller.com/corp_assets/asphalt/img/icons/facebook/facebook_sm_blk.jpg"/></a>
	                                                                                
	                                                                                <a id="google_connect" class="" href="" onclick="window.open('https://login.caller.com/openid/start?openid_identifier=https%3A//www.google.com/accounts/o8/id&token_url=http%3A%2F%2Fwww.caller.com%2Faccounts%2Fauth%2F%3Fprevious=/news/2011/oct/07/icerays-falter-down-the-stretch-in-loss-to-bulls/%26popup=true','rpxnow','width=800,height=550'); return false;"><img src="http://media.caller.com/corp_assets/asphalt/img/icons/google/google_sm_blk.jpg"/></a>
	                                                                                
	                                                                                <a id="yahoo_connect" class="" href="" onclick="window.open('https://login.caller.com/openid/start?openid_identifier=https%3A//me.yahoo.com/&token_url=http%3A%2F%2Fwww.caller.com%2Faccounts%2Fauth%2F%3Fprevious=/news/2011/oct/07/icerays-falter-down-the-stretch-in-loss-to-bulls/%26popup=true','rpxnow','width=800,height=550'); return false;"><img src="http://media.caller.com/corp_assets/asphalt/img/icons/yahoo/yahoo_sm_blk.jpg"/></a>
	                                                                                
	                                                                                <a id="twitter_connect" class="" href="" onclick="window.open('https://login.caller.com/twitter/start?token_url=http%3A%2F%2Fwww.caller.com%2Faccounts%2Fauth%2F%3Fprevious=/news/2011/oct/07/icerays-falter-down-the-stretch-in-loss-to-bulls/%26popup=true','rpxnow','width=800,height=550'); return false;"><img src="http://media.caller.com/corp_assets/asphalt/img/icons/twitter/twitter_sm_blk.jpg"/></a>
	                                                                                
											</div>
											<span class="global_login_close"><a href="#global_site_login" id="global_login_close" alt="Close"><img src="http://media.caller.com/corp_assets/asphalt/img/buttons/global_login_close.png" /> </a></span>
										</div>				
								</form>
						</div>
		</div>
		
		<div id="search">
			<form action="/search/" method="get">
				<fieldset>
					<input id="q" name="q" type="text" class="search_text" />
					<select class="yahoo_select" name="t">
						<option value="">site</option>
						<option value="web">web</option>
					</select>
					<input type="hidden" name="sortby" value="date"/>
					<input class="search_button" type="image" alt="Go" src="http://media.caller.com/corp_assets/asphalt/_sites/ccct/img/buttons/go.gif" name="image"/>
				</fieldset>
			</form>
			<p class="search_sponsor">Web Search powered by <span class="yahoo_search">Yahoo!</span> SEARCH</p>
		</div> <!-- end #search -->
		
	
	</div> <!-- end #utilities -->
	
</div> <!-- end #utilities_wrapper -->
	
<div id="background_wrapper">
<div id="wave"></div><!-- end #wave -->
</div>

	<div id="page_wrapper" class="hnews hentry item">
		
		<div id="header">
			<div id="logo"><a href="/" title="Corpus Christi Caller Times">Corpus Christi Caller Times</a></div>

			
			
		</div> <!-- end #header -->
		
		
		
		<div id="space_nav_wrapper">
			
			
			
		</div>
		
		
		
		<div id="nav_wrapper">
			
<ul id="site_nav" class="primary_nav nav_news">


<!----- NEWS NAV ----->

<li id="nav_news"><a href="/news/news/" title="News">News</a>
<ul class="secondary_nav first">
<li><a href="/news/today/" title="Today">Today</a></li>
<li><a href="/news/news/local/">Local</a>
<ul class="tertiary_nav">
<li><a href="/news/news/spending/" title="Spotlight on Spending">Spotlight on Spending</a></li>
<li><a href="/news/news/local/memorial-coliseum/" title="Memorial Coliseum">Memorial Coliseum</a></li>
<li><a href="http://blogs.caller.com/political_pulse/" title="Political Pulse Blog">Political Pulse Blog</a></li>
<li><a href="/news/news/politics/" title="Politics">Politics</a></li>
<li><a href="/news/news/education/" title="Education">Education</a></li>
<li><a href="/news/news/education/distinguished-scholars/" title="Distinguished Scholars">Distinguished Scholars</a></li>
<li><a href="/news/news/military/" title="Military">Military</a></li>
<li><a href="/veterans-remembered/" title="Veterans Remembered">Veterans Remembered</a></li>
<li><a href="/news/news/local/kempsridley/" title="Kemp's Ridley Sea Turtles">Kemp's Ridley Sea Turtles</a></li>
<li><a href="/news/news/local/las-brisas/" title="Las Brisas">Las Brisas</a></li>
<li><a href="/police/" title="LIVE Police Scanner">LIVE Police Scanner</a></li>
</ul>
</li>
<li><a href="/data/" title="Databases and Statistics">Data</a></li>
<li><a href="/news/news/">Wire</a>
<ul class="tertiary_nav">
<li><a href="/news/news/state/" title="State">State</a></li>
<li><a href="/news/news/national/" title="National">National</a></li>
<li><a href="/news/news/world/" title="World">World</a></li>
</ul>
</li>
<li><a href="http://obits.caller.com/">Obits</a>
<ul class="tertiary_nav">
<li><a href="/news/news/obituaries/" title="News Obits">News Obits</a></li>
<li><a href="http://obits.caller.com/" title="Paid Obits">Paid Obits</a></li>
</ul>
</li>
<li><a href="/news/news/columnists/">Columnists</a>
<ul class="tertiary_nav">
<li><a href="/news/news/columnists/mike-baird/" title="Mike Baird">Mike Baird</a></li>
<li><a href="/news/news/columnists/joe-hilliard/" title="Joe Hilliard">Joe Hilliard</a></li>
<li><a href="/news/news/columnists/alissa-inman/" title="Alissa Inman">Alissa Inman</a></li>
<li><a href="/news/news/columnists/lakendra-lewis/" title="Lakendra Lewis">Lakendra Lewis</a></li>
<li><a href="/news/news/columnists/stephen-ponder/" title="Dr. Stephen Ponder">Dr. Stephen Ponder</a></li>
<li><a href="/news/news/columnists/michael-womack/" title="Michael Womack">Michael Womack</a></li>
<li><a href="/news/news/columnists/phyllis-yochem/" title="Phyllis Yochem">Phyllis Yochem</a></li>
</ul>
</li>
<li><a href="/contests/" title="Contests">Contests</a>
<ul class="tertiary_nav">
<script src="http://web.caller.com/ellington/promos/contests/nav.js"></script>
<li><a href="http://caller.autoracing.upickem.net/autoracing/registration/login.asp" title="Auto Racing"><span style="color:#93ba61;">NEW:</span> Auto Racing</a></li>
<li><a href="http://caller.collegefootball.upickem.net" title="College Football">College Football</a></li>
<!--
<li><a href="http://caller.upickem.net/upickem/contest/questions.asp?contestid=37747" title="H.S. Football Challenge">H.S. Football Challenge</a></li>-->


<li><a href="http://caller.profootball.upickem.net/profootball/registration/login.asp" title="Pro Football">Pro football</a></li>

</ul>
</li>
<li><a href="http://www.caller.com/e-edition/" title="e-Edition">e-Edition</a></li>
<li><a href="/weather/" title="Weather">Weather</a>
<ul class="tertiary_nav">
<li><a href="/weather/" title="Lake Levels"><span style="color:#93ba61;">NEW:</span> Lake Levels</a></li>
<li><a href="http://links.caller.com/surf/nav_redirect.html" title="Surf Report">Surf Report</a></li>
<li><a href="/tropical/" title="Tropical Weather">Tropical Weather</a></li>
<li><a href="/tropical_radar/" title="Interactive Radar">Interactive Radar</a></li>
<li><a href="/weather/" title="Local Radar">Local Weather</a></li>
</ul>
</li>
<!---
<li><a href="/veterans-remembered/" title="Memorial Day 2011" style="color:#7fb2f6;">Memorial Day 2011</a></li>
<li><a href="/veterans-remembered/" title="Memorial Day 2011"><img src="http://web.caller.com/ellington/promos/nav/flag.png" width="16" height="16" border="0" style="padding-top:7px; margin-left:-22px;" /></a></li>
--->

<!------

<li style="margin-left:120px;"><a href="/deals/link/" title="Deals! Caller.com">Save 50% and More!</a></li>
<li style="margin-left:-20px;"><a href="/deals/link/" title="Deals! Caller.com"><img src="http://web.caller.com/ellington/promos/nav/deals_nav2.png" width="66" height="26" border="0" style="padding-top:2px;" /></a></li>


<li style="padding-left:90px;"><a href="/news/news/spending/" title="Spotlight on Spending"><span style="color:#93ba61;">NEW:</span>   Spotlight on Spending</a></li>



<span style="color:#93ba61; font-weight:bold; font-style:italic; margin-left:10px;">NEW:</span>
<li><a href="/challenge/" title="KEDT-TV Challenge"><img src="http://web.caller.com/ellington/images/challenge_nav_image.jpg" width="190" height="26" border="0" style="padding-top:1px; padding-left:75px;" /></a></li>
------>
</ul>
</li>
<!----- SPORTS NAV ----->

<li id="nav_sports"><a href="/news/sports/" title="Sports">Sports</a>
<ul class="secondary_nav">
<li><a href="/news/sports/local/" title="Local">Local</a></li>
<li><a href="http://prepsports.caller.com/" title="High School">High School Preps</a></li>
<li><a href="/news/sports/college/">College</a>
<ul class="tertiary_nav">
<li><a href="/news/sports/college/" title="Javelinas">Javelinas</a></li>
<li><a href="/news/sports/college/" title="Islanders">Islanders</a></li>
<li><a href="/news/sports/college/" title="College football">Football</a></li>
</ul>
</li>
<li><a href="/news/sports/professional/">Professional</a>
<ul class="tertiary_nav">
<li><a href="/news/sports/professional/" title="Hooks">CC Hooks</a></li>
<li><a href="/news/sports/professional/" title="IceRays">CC IceRays</a></li>
<li><a href="/news/sports/professional/" title="IFL">CC Hammerheads</a></li>
<li><a href="/news/sports/professional/spurs/" title="NBA">Spurs</a></li>
<li><a href="/news/sports/professional/rockets/" title="NBA">Rockets</a></li>
<li><a href="/news/sports/professional/mavericks/" title="NBA">Mavericks</a></li>
<li><a href="/news/sports/professional/astros/" title="MLB">Astros</a></li>
<li><a href="/news/sports/professional/rangers/" title="MLB">Rangers</a></li>
<li><a href="/news/sports/professional/cowboys/" title="NFL">Cowboys</a></li>
<li><a href="/news/sports/professional/texans/" title="NFL">Texans</a></li>
<li><a href="/news/sports/professional/stars/" title="NHL">Stars</a></li>
</ul>
</li>
<li><a href="/news/sports/recreation/" title="Outdoors">Outdoors</a></li>
<li><a href="/news/sports/columnists/">Columnists</a>
<ul class="tertiary_nav">
<li><a href="/news/sports/columnists/joel-roza/" title="Joel Roza">Joel Roza</a></li>
</ul>
</li>
<li><a href="http://blogs.caller.com/">Blogs</a>
<ul class="tertiary_nav">
<li><a href="http://blogs.caller.com/hooks_insider/" title="Hooks Insider">Hooks Insider</a></li>
<li><a href="http://blogs.caller.com/rajan/" title="In The Crease with Greg Rajan">In The Crease</a></li>
</ul>
</li>
<li><a href="http://www.caller.com/sports-contests/" title="Contests">Contests</a>
<ul class="tertiary_nav">
<li><a href="http://caller.autoracing.upickem.net/autoracing/registration/login.asp" title="Auto Racing"><span style="color:#93ba61;">NEW:</span> Auto Racing</a></li>
<li><a href="http://caller.collegefootball.upickem.net" title="College Football"> College Football</a></li>

<!--
<li><a href="http://caller.upickem.net/upickem/contest/questions.asp?contestid=37747" title="H.S. Football Challenge">H.S. Football Challenge</a></li>
<li><a href="http://caller.autoracing.upickem.net/autoracing/registration/login.asp" title="Auto Racing">Auto Racing</a></li>
<li><a href="http://caller.collegebasketball.upickem.net/collegebasketball/registration/login.asp" title="College Basketball">College Basketball</a></li>
-->
<strong><li><a href="http://caller.profootball.upickem.net/profootball/registration/login.asp" title="Pro Football">Pro football</a></li></strong>

</ul>
</li>
</ul>
</li>


<!----- BUSINESS NAV ----->

<li id="nav_business"><a href="/news/business/" title="Business">Business</a>
<ul class="secondary_nav">
<li><a href="/news/business/local/" title="Local">Local</a></li>
<li><a href="/news/business/marketwatch/" title="Markets &amp; Stocks">Markets & Stocks</a></li>
<li><a href="/news/business/national-international/" title="National / International">National / International</a></li>
<li><a href="/news/business/technology/" title="AP Technology News">Technology</a></li>
<li><a href="http://local.caller.com/corpus-christi+tx.z.html" title="Corpus Christi Business Directory">Business Directory</a></li>
<li><a href="/news/business/columnists/">Columnists</a>
<ul class="tertiary_nav">
<li><a href="/news/business/columnists/h-swint-friday/" title="H. Swint Friday">H. Swint Friday</a></li>
<li><a href="/news/business/columnists/ralph-coker/" title="Ralph Coker">Ralph Coker</a></li>
<li><a href="/news/business/columnists/jp-ellenberger/" title="J.P. Ellenberger">J.P. Ellenberger</a></li>
</ul>
</li>
</ul>
</li>


<!----- OPINIONS NAV ----->

<li id="nav_opinion"><a href="/news/opinion/" title="Opinion">Opinion</a>
<ul class="secondary_nav">
<li><a href="/blogs/" title="Blogs">Blogs</a>
<ul class="tertiary_nav">
<li><a href="http://blogs.caller.com/political_pulse/" title="Political Pulse">Political Pulse</a></li>
<li><a href="http://entertainment.caller.com" title="Caller Entertainment">Caller Entertainment</a></li>
<li><a href="http://blogs.caller.com/hooks_insider/" title="Hooks Insider">Hooks Insider</a></li>
<li><a href="http://blogs.caller.com/clip_and_save/" title="Clip and Save!">Clip and Save!</a></li>
<li><a href="http://blogs.caller.com/rajan/" title="In the Crease">In the Crease</a></li>
<li><a href="http://blogs.caller.com/amped_up/" title="Amped Up!">Amped Up!</a></li>
<li><a href="http://blogs.caller.com/game_time_live/" title="Game Time Live">Game Time Live</a></li>
</ul>
</li>
<li><a href="/news/opinion/editorial/" title="Editorial">Editorials</a></li>
<li><a href="/news/opinion/forums/" title="Forums">Forums</a></li>
<li><a href="/polls/" title="Polls">Polls</a></li>
<li><a href="/news/opinion/columnists/">Columnists</a>
<ul class="tertiary_nav">
<li><a href="/news/opinion/columnists/murphy-givens/" title="Murphy Givens">Murphy Givens</a></li>
<li><a href="/news/opinion/columnists/nick-jimenez/" title="Nick Jimenez">Nick Jimenez</a></li>
</ul>
</li>
<li><a href="/news/opinion/letters-to-editor/" title="Letters to the Editor">Letters to the Editor</a></li>
<li><a href="/letters/" title="Submit a Letter to the Editor">Submit a Letter to the Editor</a></li>
</ul>
</li>



<!----- ENTERTAINMENT NAV ----->


<li id="nav_entertainment"><a href="/news/entertainment/" title="Entertainment">Entertainment</a>
<ul class="secondary_nav">
<li><a href="/news/entertainment/arts-theater" title="Arts / Theater">Arts / Theater</a></li>
<li><a href="/restaurants/">Restaurants</a>
<ul class="tertiary_nav">
<li><a href="/news/entertainment/featuredrestaurants/" title="Features Restaurants">Featured Restaurants</a></li>
</ul>
</li>
<li><a href="#">Blogs</a>
<ul class="tertiary_nav">
<li><a href="http://entertainment.caller.com" title="Caller Entertainment">Caller Entertainment</a></li>
<li><a href="http://blogs.caller.com/amped_up/" title="Amped Up!"> Amped Up!</a></li>
</ul>
</li>
<li><a href="/news/entertainment/events/">Events</a>
<ul class="tertiary_nav">
<li><a href="/events/" title="Event Calendar">Event Calendar</a></li>
<li><a href="/events/submit/" title="Submit Event">Submit Event</a></li>
</ul>
</li>
<li><a href="" title="Movies">TV &middot; Movies &middot; Music</a>
<ul class="tertiary_nav">
<li><a href="/news/entertainment/tv/" title="Television">TV Listings</a></li>
<li><a href="/movies/" title="Movies">Movies</a></li>
<li><a href="/news/entertainment/music/" title="Music">Music</a></li>
</ul>
</li>
<li><a href="/news/entertainment/people/" title="People">Celebrities</a>
<ul class="tertiary_nav">
<li><a href="/entertainment/celebrity/" title="Celebrity Photo Gallery">Celebrity Photo Gallery</a></li>
<li><a href="/news/entertainment/selena/" title="Selena">Selena</a></li>
</ul></li>
<li><a href="/news/entertainment/comics/" title="Comics">Comics</a></li>
<li><a href="/entertainment/horoscopes/" title="Horoscopes">Horoscopes</a></li>
<li><a href="/news/entertainment/lottery/" title="Texas Lottery Numbers">Texas Lottery</a></li>
<li><a href="/entertainment/games/" title="People">Games</a>
<ul class="tertiary_nav">
<li><a href="/entertainment/numbrix/" title="Numbrix">Numbrix</a></li>
<li><a href="/entertainment/games/" title="Games">Games</a></li>
</ul></li>
</ul>
</li>



<!----- LIFESTYLES NAV ----->

<li id="nav_lifestyles"><a href="/news/lifestyles/">Lifestyles</a>
<ul class="secondary_nav">
<!--
<li><a href="/challenge/" title="KEDT-TV Challenge">KEDT-TV Challenge</a></li>
-->
<li><a href="/news/lifestyles/home-garden/" title="Home &amp; Garden">Home & Garden</a>
<ul class="tertiary_nav">
<li><a href="/garden_tips/" title="Garden Tips">Garden Tips</a></li>
</ul>
<li><a href="/news/lifestyles/family/" title="Family">Family</a>
<ul class="tertiary_nav">
<li><a href="/news/lifestyles/family/" title="Anniversaries">Anniversaries</a></li>
<li><a href="http://display.caller.com/ROP/Subcat.aspx?cat=6907&subcat=6916" title="Engagement Announcements">Engagements</a></li>
<li><a href="/news/lifestyles/family/" title="Quinceaneras">Quinceaneras</a></li>
<li><a href="http://display.caller.com/ROP/Subcat.aspx?cat=6907&subcat=6927" title="Wedding Announcements">Weddings</a></li>
<li><a href="http://display.caller.com/ROP/Subcat.aspx?cat=6907&subcat=6920" title="Memorials">In Memory Of</a></li>
</ul>
</li>
<li><a href="/news/lifestyles/people/" title="People">People</a>
<li><a href="/news/lifestyles/sunday-homes/" title="Sunday Homes">Sunday Homes</a></li>
<li><a href="/food_and_recipes/" title="Food & Recipes">Food & Recipes</a>
<li><a href="/health/" title="Health &amp; Fitness"> Health and Wellness</a>
<ul class="tertiary_nav">
<li><a href="/news/lifestyles/health-fitness/" title="Healthy Living">Healthy Living</a></li>
</ul>
</li>
</ul>
</li>



<!----- MEDIA NAV ----->

<li id="nav_media"><a href="/multimedia/">Media</a>
<ul class="secondary_nav">
<li><a href="/photos/" title="Photos">Today's Photos</a></li>
<li><a href="/photos/archive/" title="Photo Archive">Photo Archive</a></li>
<li><a href="/photos/galleries/" title="Photo Galleries">Photo Galleries</a></li>
<li><a href="/photos/galleries/sets/" title="Photo Galleries by Topic">Photo Galleries by Topic</a></li>
<li><a href="/videos/" title="Videos">Videos</a></li>
<li><a href="http://clickandshare.caller.com/" title="Upload Your Photos and Videos">Your Photos</a></li>
<li><a href="http://clickandshare.caller.com/MediaItemUpload.aspx" title="Upload Your Photos and Videos">Upload!</a></li>
</ul>
</li>
</ul> <!-- end #main_nav -->


<!----- VERTICALS NAV ----->


<ul id="verticals_nav">
<li><a href="http://hotjobs.caller.com/" title="Jobs">Jobs</a></li>
<li><a href="http://homes.caller.com/" title="Homes">Homes</a></li>
<li><a href="http://cars.caller.com/" title="Cars">Cars</a></li>
<li class="last"><a href="http://www.caller.com/classifieds/" title="Classified">Classified</a></li>
</ul> <!-- end #verticals_nav -->

			
		</div> <!-- end #nav_wrapper -->
		
		
			
			
			
			
			
			
			
			
			
			
			
			
		
		
		

		
		
			
			
				
				
				
	
				
					
				
		
				
		
				
					<div id="alert_bark_wrapper">
						<div id="alert_bark_clipper">
							<ul id="alert_bark_carousel">
							
								
							
								
				
								
									
										



	
	
	




<li class="alert_bark alert_bark_breaking_weather alert_bark_img_srchttpwebcallercomellingtonpromosnaventertainment_logo3png">
	<h2 class="alert_bark_title"><img src="http://web.caller.com/ellington/promos/nav/entertainment_logo3.png" /></h2>
	<p class="alert_bark_content">

<a href="http://entertainment.caller.com/?p=8998">ACE: Top 5</a>
 &nbsp; &bull;  &nbsp;

<a href="http://entertainment.caller.com/?p=9000">Valentine's Day Etiquette</a>
 &nbsp; &bull;  &nbsp;

<a href="http://entertainment.caller.com/?p=9028">Valentine's Day Specials</a> &nbsp; &bull;  &nbsp;

<a href="www.caller.com/entertainment">See Blog</a>
</p>
</li><!-- end .alert_bark alert_bark_breaking_weather -->

									
								
							
								
							
								
									
								
							
								
							
								
									
										



	
	
	




<li class="alert_bark alert_bark_site alert_bark_breaking_news_alerts">
	<h2 class="alert_bark_title">BREAKING NEWS ALERTS</h2>
	<p class="alert_bark_content">
<a href="http://support.caller.com/breakingnews/latest/"> Sign up to get Caller.com breaking news alert</a></p>
</li><!-- end .alert_bark alert_bark_site -->
									
										



	
	
	




<li class="alert_bark alert_bark_site alert_bark_political_pulse">
	<h2 class="alert_bark_title">POLITICAL PULSE</h2>
	<p class="alert_bark_content">
<a href="http://blogs.caller.com/political_pulse/archives/2012/02/city_council_sa.html">Kieschnick receives gift</a>
 &nbsp; &bull;  &nbsp;
 <a href="http://blogs.caller.com/political_pulse/archives/2012/02/farenthold_goes.html">Farenthold vs. U.S. AG</a>
 &nbsp; &bull;  &nbsp;
 <a href="http://blogs.caller.com/political_pulse/archives/2012/02/whata-whata-wha.html">Torres says Scott threatened him politically</a></p>
</li><!-- end .alert_bark alert_bark_site -->
									
										



	
	
	




<li class="alert_bark alert_bark_site alert_bark_crime_stoppers_video">
	<h2 class="alert_bark_title">CRIME STOPPERS VIDEO</h2>
	<p class="alert_bark_content">
 <a href="http://www.caller.com/videos/detail/crimes-stoppers-2012-5/">Nueces Co. most wanted</a>
 &nbsp; &bull;  &nbsp;
<a href="http://www.caller.com/videos/detail/crime-stoppers-2012-4/">Restaurant owners sought in credit card abuse</a>
 &nbsp; &bull;  &nbsp;
<a href="http://www.caller.com/videos/detail/crime-stoppers-2012-3/">Burglary, auto theft</a>        


</p>
</li><!-- end .alert_bark alert_bark_site -->
									
										



	
	
	




<li class="alert_bark alert_bark_site alert_bark_auto_racing_contest">
	<h2 class="alert_bark_title">AUTO RACING CONTEST</h2>
	<p class="alert_bark_content">
<a href="http://caller.autoracing.upickem.net/autoracing/registration/login.asp"> Sign up for a chance to win an Amazon $1,500 gift certificate</a></p>
</li><!-- end .alert_bark alert_bark_site -->
									
										



	
	
	




<li class="alert_bark alert_bark_site alert_bark_databases">
	<h2 class="alert_bark_title">DATABASES</h2>
	<p class="alert_bark_content">
 <a href="http://www.caller.com/data/health/restaurantinspections/">Restaurant inspections</a>
 &nbsp; &bull;  &nbsp;
 <a href="http://www.caller.com/data/government-spending/citycampaign/">City Council campaign contributions</a>
 &nbsp; &bull;  &nbsp;
<a href="http://www.caller.com/streets/map/">Map of Corpus Christi street conditions</a></p>
</li><!-- end .alert_bark alert_bark_site -->
									
										



	
	
	




<li class="alert_bark alert_bark_site alert_bark_salaries">
	<h2 class="alert_bark_title">SALARIES</h2>
	<p class="alert_bark_content">
 <a href="http://www.caller.com/data/public-salaries/areacounties/">New numbers for Aransas, Bee and San Patricio counties</a>
 &nbsp; &bull;  &nbsp;
 <a href="http://www.caller.com/data/public-salaries/areacities/">New city salaries for Beeville, Port Aransas, Ingleside</a></p>
</li><!-- end .alert_bark alert_bark_site -->
									
										



	
	
	




<li class="alert_bark alert_bark_site alert_bark_click_and_share">
	<h2 class="alert_bark_title">CLICK AND SHARE</h2>
	<p class="alert_bark_content">
<a href="http://clickandshare.caller.com/"> Upload your photos and you might see them in Monday's Caller-Times</a></p>
</li><!-- end .alert_bark alert_bark_site -->
									
										



	
	
	




<li class="alert_bark alert_bark_site alert_bark_follow_us_on_twitter">
	<h2 class="alert_bark_title">FOLLOW US ON TWITTER</h2>
	<p class="alert_bark_content">
<a href="http://www.twitter.com/callerdotcom/"> News</a>  &nbsp; &nbsp; <a href="http://www.twitter.com/callersports/">Sports</a>    &nbsp; &nbsp; <a href="http://www.twitter.com/callerentertain/">Entertainment</a>    &nbsp; &nbsp; <a href="http://www.twitter.com/callereducation/">Education</a>    &nbsp; &nbsp; <a href="http://www.twitter.com/callerpolitics/">Politics</a>    &nbsp; &nbsp; <a href="http://www.twitter.com/callerbusiness/">Business</a></p>
</li><!-- end .alert_bark alert_bark_site -->
									

								
							
							</ul>
						</div><!-- end #alert_bark_clipper -->
					</div><!-- end #alert_bark_wrapper -->
				
				
				
			
		
			
		
		
		
		
	<div id="section_header_wrapper">
		<div id="section_header" class="detail clear">
			
			
	
	
		
		<div id="article_header">
			<h1 class="article_headline entry-title">IceRays falter down the stretch in loss to Bulls </h1>
			<h2 class="article_subhead">Amarillo scores game's final four goals</h2>
		
			
		
			<ul class="article_meta clear">
				
					
						<li class="author vcard">
							
								
									By <a href="/staff/greg-rajan/" title="Greg Rajan" class="fn">Greg Rajan</a>
								
							
						</li>
						
							<li class="source-org vcard" style="display:none">
								<span class="org fn">Corpus Christi Caller Times</span>
							</li>
						

					
				
			
				<li><span class="updated" title="2011-10-07T23:40:00-05:00">Posted October 7, 2011 at 11:40 p.m.</span></li>
			
			</ul>
		
			<ul class="story_tools story_tools_dark">
	
	<li><a href="#comments" title="Discuss" class="button button_dark story_tool story_tool_discuss">Discuss</a></li>
	
	
	
	<li class="story_print_button"><a href="?print=1" title="Print" class="button button_dark story_tool story_tool_print">Print</a></li>

	<li class="story_font story_font_small"><a href="#" title="Font Size: Small" class="button button_dark story_tool story_tool_font_small" id="font_small">A</a></li>
	<li class="story_font story_font_medium"><a href="#" title="Font Size: Medium" class="button button_dark story_tool story_tool_font_default" id="font_default">A</a></li>
	<li class="story_font story_font_large"><a href="#" title="Font Size: Large" class="button button_dark story_tool story_tool_font_large" id="font_large">A</a></li>

		<ul class="story_tools_right">


			

					<li><a href="http://www.facebook.com" title="Share this on Facebook" class="facebook facebook_share shareLink"><img src="http://media.caller.com/corp_assets/asphalt/img/icons/social/facebook_16.png" alt="Share this on Facebook" /></a></li>
		
		
		<li><a href="http://twitter.com/intent/tweet/?url=http://www.caller.com/news/2011/oct/07/icerays-falter-down-the-stretch-in-loss-to-bulls/&text=IceRays falter down the stretch in loss to Bulls " title="Tweet this" class="twitter twitter_share"><img src="http://media.caller.com/corp_assets/asphalt/img/icons/social/twitter_16.png" alt="Tweet this" /></a></li>

			<!-- Place this tag where you want the +1 button to render -->
				<li><a href="javascript:return false;" class="gplus_share">
						<div class="g-plusone" data-size="small" data-annotation="none" href="http://www.caller.com/news/2011/oct/07/icerays-falter-down-the-stretch-in-loss-to-bulls/?CID=gPlusAbove"></div>

	
			</a></li>


			<li><a href="/mailfriend/61/111741/6249ec8146/" title="Email" class="mail_share"><img src="http://media.caller.com/corp_assets/asphalt/img/icons/social/email_16_thin.png" alt="Email this to a friend" /></a></li>
		</ul>

</ul>

		</div><!-- end #article_header -->
	
	
	
		
	


			
			
		</div> <!-- end #section_header -->
		
		
			
	
	

			
			
			
		
		
	</div> <!-- end #section_title_wrapper -->

		
		
		
		
		<div id="content_wrapper" class="clear">
			
		
		<div id="primary_content">
			
			
			
			
			
	<div id="article_body">
		
		
			
		
		
		
			<div class="entry-content">
			
			
				

<p ><span class="dateline">CORPUS CHRISTI</span> —
For large stretches of Friday night's game, the IceRays showed they could compete with the first-place team in their division.</p>

<p >But the Amarillo Bulls found an extra gear in the third period, and Corpus Christi was unable to keep pace in a 6-3 loss at the American Bank Center.</p>

<p >The IceRays (3-5-0, 6 points) dropped their third consecutive game, one that seemed winnable before the final 12 minutes, when Amarillo scored the contest's final four goals.</p>

<p >"I'm happy that we fought back and had a chance when he had the lead (in the third) to really play our game," IceRays coach Justin Quenneville said. "Then we got into penalty trouble and that's just inexcusable. It's hard to win when you're in the box.</p>

<p >"It's just frustrating at the end of the day. There are some good things and bad things, but we definitely ran into a veteran team that just outworked us again. We've got to get it into our guys and into our core leaders that you can't quit — you've got to work right to the end and keep fighting."</p>

<p >The Bulls, who went to the North American Hockey League's Robertson Cup semifinals last season and returned 13 players, certainly put on a display of how to finish, outshooting the IceRays 21-7 in the third period.</p>

<p >With the teams tied at 1, IceRays forward Josh Obregon was called for a takedown in the offensive zone. Five seconds later, Bulls defenseman Karl Beckman beat IceRays goalie Kale Robertson on a screened shot to put Amarillo on top at 3:53 of the third.</p>

<p >The IceRays didn't take long to respond, with A.J. Jarosz converting a nifty Seth Blair feed from behind the net to equalize at 5:12.</p>

<p >Just 25 seconds later, Blair was sent to the penalty box for tripping. But only nine seconds into his minor, the IceRays' Danny Fetzer scored short-handed on a right-circle wrist shot to give the IceRays their first lead.</p>

<p >However, that lead was short-lived. Fifty seconds after Fetzer's goal, IceRays defenseman Justin Lutsch was sent off for a high stick, giving Amarillo a two-man advantage for nearly a minute.</p>

<p >After Robertson made some terrific saves to preserve the IceRays' lead, Matt Johnson knocked in a rebound with just four seconds left on the two-man advantage to knot the score.</p>

<p >"Those were soft penalties for the five-minute mark of the third period and a 3-2 hockey game," Quenneville said. "But it is what it is. When you're reaching in with your stick, they're going to call it all day, whether it's a good call or a bad call."</p>

<p >T.J. Sarcona then gave Amarillo the lead for good at 10:38, coming unchecked down the left side and knocking in a rebound after a bad IceRays line change.</p>

<p >Tyler Deresky redirection goal at 16:30 after a nice setup from Jude Warner and Brooks Behling's empty-netter with 9.3 seconds left sealed Amarillo's victory.</p>

<p >"We're just that foot behind every time," Quenneville said. "If we can anticipate the play a little better and get our leadership group to really demonstrate that the most, everyone will buy in.</p>

<p >"We had a chance to close it out, and it's there. It's just taking the right steps to get to that. We'll take the positives out of the video and work on it (tonight)."</p>

<p >BULLS 6, ICERAYS 3</p>

<p >Amarillo	0	1	5 — 6</p>

<p >Corpus Christi	1	0	2 — 3</p>

<p >First Period — 1, CC, Blair 3 (Weis, Taff), 14:02 (pp). Penalties — Jarosz, CC (checking from behind), 5:27; Gustafsson, Ama (holding), 10:29; Lubin, Ama (tripping), 12:29; Behling, Ama (roughing), 18:45.</p>

<p >Second Period — 2, Ama, Johnson 2 (Erickson, Kozlak), 2:40. Penalties — Monteith, CC (tripping), 1:34; Mullan, Ama (tripping), 1:34; Purcell, CC (checking from behind), 10:20; Johnson, Ama (tripping), 17:55; Blair, CC (slashing), 19:02; Popilock, Ama (holding), 19:33.</p>

<p >Third Period — 3, Ama, Beckman 1 (Erickson), 3:53 (pp); 4, CC, Jarosz 1 (Blair, D'Arrisso), 5:12; 5, CC, Fetzer 1 (Maxwell), 5:46 (sh); 6, Ama, Johnson 3 (Erickson, Beckman), 7:33 (pp); 7, Ama, Sarcona 7 (Rey, Carlisle), 10:38; 8, Ama, Deresky 2 (Warner), 16:30; 9, Ama, Behling 3 (Mullan), 19:50 (en). Penalties — Obregon, CC (holding), 3:48; Blair, CC (tripping), 5:37; Lutsch, CC (high-sticking), 6:36; Monteith, CC (roughing), 12:45.</p>

<p >Shots on goal — Amarillo 11-9-21—41; Corpus Christi 5-8-7—20. Goalies — Amarillo, Taffe 2-0-1 (20 shots-17 saves); Corpus Christi, Robertson 2-3-0 (40-35). Power-play opportunities — Amarillo 2 of 7; Corpus Christi 1 of 5. Referee — Brandon Schmitt. Linesmen — Richard Lembo, Kevin Cassidy. A — 2,123. T — 2:13.</p>


			
			</div>
		
		
		
		
		
			
		
			<!-- Below is only used by KNS -->
			
			<!-- /is only used by KNS -->
			
			<!-- below for ap registry -->
			
			
			
			<p>
				
				<em><a rel="item-license" href="/privacy/">&copy; 2011 Corpus Christi Caller Times. All rights reserved. This material may not be published, broadcast, rewritten or redistributed.</a></em>

				<img src="http://analytics.apnewsregistry.com/analytics/v2/image.svc/CCCT/MAI/ccct_111741_2011-10-07T234000-0500/RWS/www.caller.com/PC/Basic/" alt="" width="1" height="1" />
			</p>
			
			
			<!-- /below for ap registry -->
		
		
	</div><!-- End #article_body -->
	
	
<ul class="story_tools story_tools_light clear">
	<li><a href="#comments" title="Discuss" class="button button_light story_tool story_tool_discuss">Discuss</a></li>
	
	
	<li><a href="?print=1" title="Print" class="button button_light story_tool story_tool_print">Print</a></li>


		<ul class="story_tools_right">


			
			
					<li><a href="http://www.facebook.com" title="Share this on Facebook" class="facebook facebook_share shareLink"><img src="http://media.caller.com/corp_assets/asphalt/img/icons/social/facebook_16.png" alt="Share this on Facebook" /></a></li>
		
		
		<li><a href="http://twitter.com/intent/tweet/?url=http://www.caller.com/news/2011/oct/07/icerays-falter-down-the-stretch-in-loss-to-bulls/&text=IceRays falter down the stretch in loss to Bulls " title="Tweet this" class="twitter twitter_share"><img src="http://media.caller.com/corp_assets/asphalt/img/icons/social/twitter_16.png" alt="Tweet this" /></a></li>

			<!-- Place this tag where you want the +1 button to render -->
				<li><a href="javascript:return false;" class="gplus_share">
						<div class="g-plusone" data-size="small" data-annotation="none" href="http://www.caller.com/news/2011/oct/07/icerays-falter-down-the-stretch-in-loss-to-bulls/?CID=gPlusBelow"></div>

	
			</a></li>
				  <script type="text/javascript" src="https://apis.google.com/js/plusone.js"></script>


			<li><a href="/mailfriend/61/111741/6249ec8146/" title="Email" class="mail_share"><img src="http://media.caller.com/corp_assets/asphalt/img/icons/social/email_16_thin.png" alt="Email this to a friend" /></a></li>
		</ul>

	<script type="text/javascript">



		function share_prompt(e){
			//	e.preventDefault();
			 FB.ui(
			   {
			     method: 'feed',
			     name: 'IceRays falter down the stretch in loss to Bulls ',
			     link: 'http://www.caller.com/news/2011/oct/07/icerays-falter-down-the-stretch-in-loss-to-bulls/',
				 display: 'popup'
			   }
			 );


		};




	</script>	

</ul>

	
	<p><div class="fb-like" data-send="true" data-width="400" data-show-faces="true" data-action="recommend"></div></p>
	
	
	
	
		
		
	
	
	
	


<script type="text/JavaScript">
var OB_permalink= 'http://www.caller.com/news/2011/oct/07/icerays-falter-down-the-stretch-in-loss-to-bulls/';
var OB_Template="caller";
var OB_widgetId= 'AR_1';
var OB_langJS ='http://widgets.outbrain.com/lang_en.js';
if ( typeof(OB_Script)!='undefined' )
OutbrainStart();
else
{
var OB_Script = true;
var str = "<script src='http://widgets.outbrain.com/outbrainWidget.js'; type='text/javascript'></"+"script>";
document.write(str);
}
</script>	

	
	
	
		<div class="bucket story_detail_bucket">
			<div class="titlebar">
				<h3><a href="/news/sports/professional/" title="Also in Pro Sports">Also in Pro Sports</a></h3>
				
				<ul class="deeplinks">
					<li><a href="/news/sports/professional/" title="More /news/sports/professional/">More</a></li>
				</ul><!-- end .deeplinks -->
				
			</div><!-- End .titlebar -->
			
			<div class="bucket_primary clear">
				<ul class="story_list more_story_list">
					
						<li><a href="/news/2012/feb/10/spurs-ginobili-return-saturday-against-nets/" title="Spurs' Ginobili to return Saturday against Nets">Spurs' Ginobili to return Saturday against Nets</a></li>
					
						<li><a href="/news/2012/feb/10/gregg-popovich-looks-lock-nba-coach-year/" title="Gregg Popovich looks like lock for NBA Coach of the Year">Gregg Popovich looks like lock for NBA Coach of the Year</a></li>
					
						<li><a href="/news/2012/feb/09/tony-parker-good-ball-even-better-without-it/" title="Tony Parker: Good with ball, even better without it">Tony Parker: Good with ball, even better without it</a></li>
					
				</ul>
			</div><!-- end .bucket_primary -->
		</div><!-- End .bucket -->	
	
	
	

<script type="text/JavaScript">
var OB_permalink= 'http://www.caller.com/news/2011/oct/07/icerays-falter-down-the-stretch-in-loss-to-bulls/';
var OB_Template="caller";
	var OB_widgetId= 'AR_2';
	var OB_langJS ='http://widgets.outbrain.com/lang_en.js';
	if ( typeof(OB_Script)!='undefined' )
	OutbrainStart();
	else
	{
	var OB_Script = true;
	var str = "<script src='http://widgets.outbrain.com/outbrainWidget.js'; type='text/javascript'></"+"script>";
	document.write(str);
	}
	</script>

	
	
	

	<script>
		// record top of comments
		//apptap_whenFirstVisible("titlebar_comment_count","apptap_viewed_comments_after_fold( document.title );" );
		// record bottom of comments
		apptap_whenFirstVisible("comments","apptap_viewed_comments_after_fold( document.title );" );
	</script>
	<div id="comments" class="tab_wrapper comments_enabled">
		<div class="titlebar">
			<h3>Comments <span id="titlebar_comment_count">&raquo; <span class="dynamic_comment_count">0</span></span></h3>
			
		</div><!-- end .titlebar -->
		
		<div id="comment_wrapper" class="bucket_primary">
			<div id="comments_container" class="clear">
				
					<div class="pagination pagination_top pagination_comments">
						
	<div class="comment_pagination_placeholder"></div><!-- end .comment_pagination_placeholder -->
	



					</div><!-- end .pagination pagination_top -->

					<div class="comment_list_wrapper clear" id="comment_list_count_0">
						<div id="comment_list" class="comment_list clear">
						
							<p class="no_comments">Be the first to post a comment!</p>
							
						

						</div><!-- End comment_list -->

					</div><!-- End comment_list_wrapper -->

					<div class="pagination pagination_bottom pagination_comments">
						
	<div class="comment_pagination_placeholder"></div><!-- end .comment_pagination_placeholder -->
	



					</div><!-- end .pagination pagination_bottom -->
				
					
					
					
			</div><!-- End comments_container -->
			
			
				
					<div class="comment_form_wrapper">
	
	<div class="comment_form">
		
		<h4>Share your thoughts</h4>
		<p class="comments_privacy">Comments are the sole responsibility of the person posting them.  You agree not to post comments that are off topic, defamatory, obscene, abusive, threatening or an invasion of privacy. Violators may be banned.  <a href="/privacy/">Click here for our full user agreement</a>. </p>

		<form action="/comments/post/" method="post" class="submit_form default_form submit_comment_form">
			

			

			
				<p><label for="id_username"><span class="submit_label">Username * <span class="formtip">Don't have an account? <a href="/accounts/register/">Sign up for a new account</a></span></span> <input type="text" name="username" id="id_username" /></label></p>
				<p><label for="id_password"><span class="submit_label">Password * <span class="formtip">Can't remember? <a href="/accounts/password_reset/">Reset your password</a></span></span><input type="password" name="password" id="id_password" /></label></p>
			
			
			
			

			<p><label for="id_comment"><span class="submit_label">Comment</span><textarea name="comment" id="id_comment" rows="10" cols="60"></textarea></label></p>

			<input type="hidden" name="options" value="ip" />
			<input type="hidden" name="target" value="61:111741" />
			<input type="hidden" name="gonzo" value="10d1feff1a2a9ebbbb50d3c202e78d1a" />

			<p><input type="submit" name="preview" value="Preview comment" /></p>
						
			
			
			
			
				
					<div style="border-bottom:1px solid #dadada; margin-bottom:10px;"></div>
					<p class="comments_privacy">Comments can be shared on 
						
							
							Facebook
							and 
							Yahoo!.
Add both options by <a href="/accounts/auth/identities/">connecting your profiles</a>.</p>
				
				
				
				
			
					
			
		</form>

	</div><!-- end .comment_form -->
	
</div><!-- end .comment_form_wrapper -->


				
			
			
		
		</div><!-- end #comments -->

	</div><!-- end #comment_wrapper -->
		

			
			
			
			
		</div><!-- End primary_content -->
		
		
		
			<div id="secondary_content" class="ggnoads">
				
					
						<div class="bigbox_wrapper clear">
	<div class="bigbox">
		<div class="adtag" id="BIGBOX_1"><script>yld_mgr.place_ad_here("BIGBOX_1");</script> </div>
	</div> <!-- end .bigbox -->
</div> <!-- end .bigbox_wrapper -->
						
					
					
					
					
					
					
					
					
					
					
					
					
					
						



<div id="most_popular" class="tab_wrapper">
	<div class="titlebar titlebar_secondary">
		<h3>Most Popular</h3>
	</div><!-- end .titlebar_secondary -->
	<ul class="tab_header">
		
		
		
		
		<li class="ui-tabs-selected"><a href="#most_popular_viewed">Viewed</a></li>
		
		
		
		
			<li><a href="#most_popular_commented">Commented</a></li>
		
		
		
		
			<li><a href="#most_popular_emailed">Emailed</a></li>
		
		
	</ul>
	
	
	<div id="most_popular_viewed" class="bucket_secondary">
		
		
		<ul class="story_list sidebar_story_list">
			
				<li>
					<a href="/news/2012/feb/10/nueces-county-appraisal-district-board-member-resi/?partner=popular" title="Esther Gonzalez was discharged from the state department of corrections in 1990 after serving three years for voter registration fraud" rel="nofollow">Nueces County Appraisal District board member resigns after it became known she was convicted felon</a>
					<span class="date">Updated 2/10/2012 at 6:26 p.m.</span> <a href="/news/2012/feb/10/nueces-county-appraisal-district-board-member-resi/?partner=popular#comments" class="comment_count" rel="nofollow">71 comments</a>
				</li>
			
				<li>
					<a href="/news/2012/feb/11/letters-to-the-editor-021112/?partner=popular" title=" " rel="nofollow">Letters to the Editor: 02.11.12</a>
					<span class="date">Published 2/11/2012 at 3:00 a.m.</span> <a href="/news/2012/feb/11/letters-to-the-editor-021112/?partner=popular#comments" class="comment_count" rel="nofollow">59 comments</a>
				</li>
			
				<li>
					<a href="/news/2012/feb/11/whitney-houston-dead-48/?partner=popular" title="Whitney Houston, who reigned as pop music's queen until her majestic voice and regal image were ravaged by drug use, has died. She was 48." rel="nofollow">Whitney Houston dead at 48</a>
					<span class="date">Updated 2/11/2012 at 7:43 p.m.</span> <a href="/news/2012/feb/11/whitney-houston-dead-48/?partner=popular#comments" class="comment_count" rel="nofollow">12 comments</a>
				</li>
			
				<li>
					<a href="/news/2012/feb/10/texas-woman-faces-life-prison-sex-13-year-old-boy/?partner=popular" title="Cell phone records show more than 1,500 messages between the 33-year-old woman and the child" rel="nofollow">Texas woman faces life in prison for sex with 13-year-old boy</a>
					<span class="date">Updated 2/10/2012 at 9:00 a.m.</span> <a href="/news/2012/feb/10/texas-woman-faces-life-prison-sex-13-year-old-boy/?partner=popular#comments" class="comment_count" rel="nofollow">36 comments</a>
				</li>
			
				<li>
					<a href="/news/2012/feb/12/letters-to-the-editor-021212/?partner=popular" title=" " rel="nofollow">Letters to the Editor: 02.12.12</a>
					<span class="date">Published 2/12/2012 at 3:00 a.m.</span> <a href="/news/2012/feb/12/letters-to-the-editor-021212/?partner=popular#comments" class="comment_count" rel="nofollow">24 comments</a>
				</li>
			
		</ul>
		
		
		
		<div class="bucket_media sidebar_bucket_media clear">
			<h5>Photo Galleries</h5>
			
			
				<div class="bucket_media_item sidebar_bucket_media_item">
					<a href="/photos/galleries/2012/feb/12/closet-snoop-angie-acosta/?partner=popular" title="Closet snoop: Angie Acosta" rel="nofollow"><img src="http://media.caller.com/media/img/photos/2012/02/07/420120207164208001_t90_70.JPG" width="90" alt="Closet snoop: Angie Acosta" /> Closet snoop: Angie Acosta</a>
				</div> <!-- end .bucket_media_item -->
			
				<div class="bucket_media_item sidebar_bucket_media_item">
					<a href="/photos/galleries/2009/aug/01/feria-de-las-flores-behind-scenes/?partner=popular" title="Feria De Las Flores: Behind the Scenes" rel="nofollow"><img src="http://media.caller.com/media/img/photos/2009/08/01/0802_LOC_FERIA_DE_LAS_FLORES_13_t90_70.jpg" width="90" alt="Feria De Las Flores: Behind the Scenes" /> Feria De Las Flores: Behind the Scenes</a>
				</div> <!-- end .bucket_media_item -->
			
				<div class="bucket_media_item sidebar_bucket_media_item">
					<a href="/photos/galleries/2012/jan/31/junior-league-fairy-tale-ball-2012/?partner=popular" title="Junior League Fairy Tale Ball 2012" rel="nofollow"><img src="http://media.caller.com/media/img/photos/2012/01/31/420120131131512001_t90_70.JPG" width="90" alt="Junior League Fairy Tale Ball 2012" /> Junior League Fairy Tale Ball 2012</a>
				</div> <!-- end .bucket_media_item -->
			

		</div> <!-- end .bucket_gallery -->
		
	</div><!-- end #most_popular_viewed -->
	
	
	
	<div id="most_popular_commented" class="bucket_secondary preventFOUC">
		<ul class="story_list sidebar_story_list">
			
				<li>
					<a href="/news/2012/feb/10/letters-to-the-editor-021012/?partner=popular" title=" " rel="nofollow">Letters to the Editor: 02.10.12</a>
					<span class="date">Published 2/10/2012 at 3:00 a.m.</span> <a href="/news/2012/feb/10/letters-to-the-editor-021012/?partner=popular#comments" class="comment_count" rel="nofollow">127 comments</a>
				</li>
			
				<li>
					<a href="/news/2012/feb/09/letters-to-the-editor-020912/?partner=popular" title=" " rel="nofollow">Letters to the Editor: 02.09.12</a>
					<span class="date">Published 2/9/2012 at 3:00 a.m.</span> <a href="/news/2012/feb/09/letters-to-the-editor-020912/?partner=popular#comments" class="comment_count" rel="nofollow">106 comments</a>
				</li>
			
				<li>
					<a href="/news/2012/feb/09/one-person-killed-thursday-rollover-after-border-p/?partner=popular" title="Three people taken to area hospitals; more than a dozen undocumented immigrants scrambling" rel="nofollow">One person killed in Thursday rollover after Border Patrol pursued vehicle</a>
					<span class="date">Published 2/9/2012 at 8:28 a.m.</span> <a href="/news/2012/feb/09/one-person-killed-thursday-rollover-after-border-p/?partner=popular#comments" class="comment_count" rel="nofollow">70 comments</a>
				</li>
			
				<li>
					<a href="/news/2012/feb/10/nueces-county-appraisal-district-board-member-resi/?partner=popular" title="Esther Gonzalez was discharged from the state department of corrections in 1990 after serving three years for voter registration fraud" rel="nofollow">Nueces County Appraisal District board member resigns after it became known she was convicted felon</a>
					<span class="date">Published 2/10/2012 at 5:38 p.m.</span> <a href="/news/2012/feb/10/nueces-county-appraisal-district-board-member-resi/?partner=popular#comments" class="comment_count" rel="nofollow">71 comments</a>
				</li>
			
				<li>
					<a href="/news/2012/feb/08/state-appeals-courts-rules-hannah-overton-case/?partner=popular" title="Ruling made by the Texas Court of Criminal Appeals will review Overton's 2007 capital murder conviction" rel="nofollow">State appeals court rules Hannah Overton case will receive review </a>
					<span class="date">Published 2/8/2012 at 11:02 p.m.</span> <a href="/news/2012/feb/08/state-appeals-courts-rules-hannah-overton-case/?partner=popular#comments" class="comment_count" rel="nofollow">73 comments</a>
				</li>
			
		</ul>
	</div><!-- end #most_popular_commented -->
	
	
	
	<div id="most_popular_emailed" class="bucket_secondary preventFOUC">
		<ul class="story_list sidebar_story_list">
			
				<li>
					<a href="/news/2012/feb/07/texas-architecture-licensing-board-seeks-for/?partner=popular" title="The allegations stem from a formal complaint filed with the state board in August by 32 local architects and engineers" rel="nofollow">Texas architecture licensing board seeks penalties for CCISD architect team </a>
					<span class="date">Published 2/7/2012 at 6:44 p.m.</span> <a href="/news/2012/feb/07/texas-architecture-licensing-board-seeks-for/?partner=popular#comments" class="comment_count" rel="nofollow">38 comments</a>
				</li>
			
				<li>
					<a href="/news/2012/feb/08/corpus-christi-pain-doctor-faces-allegations-of/?partner=popular" title="In his response to the medical board complaint, Dr. Ryan Potter denied the allegations" rel="nofollow">Corpus Christi pain doctor faces allegations of improper pain pill prescriptions, witness intimidation</a>
					<span class="date">Published 2/8/2012 at 7:00 p.m.</span> <a href="/news/2012/feb/08/corpus-christi-pain-doctor-faces-allegations-of/?partner=popular#comments" class="comment_count" rel="nofollow">65 comments</a>
				</li>
			
				<li>
					<a href="/news/2012/feb/06/a-corpus-christi-man-was-awarded-nearly-32-after/?partner=popular" title="A Nueces County jury awarded a percentage of $7.9 million to a man whose family was killed in an 18-wheeler collision. " rel="nofollow">Corpus Christi man awarded nearly $3.2 million after daughter, 12, killed in semitrailer collision  </a>
					<span class="date">Published 2/6/2012 at 6:40 p.m.</span> <a href="/news/2012/feb/06/a-corpus-christi-man-was-awarded-nearly-32-after/?partner=popular#comments" class="comment_count" rel="nofollow">114 comments</a>
				</li>
			
				<li>
					<a href="/news/2012/feb/02/former-corpus-christi-mayor-congressional-jason/?partner=popular" title="Luby served as a three-term mayor in the 1970s and left in 1978 to run for Congress as a Republican, a race he lost to Solomon P. Ortiz" rel="nofollow">Former Corpus Christi mayor, congressional candidate Jason Luby dies at 82 </a>
					<span class="date">Published 2/2/2012 at 9:32 p.m.</span> <a href="/news/2012/feb/02/former-corpus-christi-mayor-congressional-jason/?partner=popular#comments" class="comment_count" rel="nofollow">9 comments</a>
				</li>
			
				<li>
					<a href="/news/2012/feb/08/entrepreneur-to-turn-former-h-e-b-building-in/?partner=popular" title="Jeff Dinger, owner of Cinema 4 in Rockport and Northshore 8 in Portland, expects it to open in November" rel="nofollow">Entrepreneur to turn former H-E-B building in Rockport into theater with food, retail space </a>
					<span class="date">Published 2/8/2012 at 4:56 p.m.</span> <a href="/news/2012/feb/08/entrepreneur-to-turn-former-h-e-b-building-in/?partner=popular#comments" class="comment_count" rel="nofollow">9 comments</a>
				</li>
			
		</ul>
	</div><!-- end #most_popular_emailed -->
	

</div><!-- end #most_popular -->


					
					
					
					
					
					
					
						<div id="sidebar_weather" class="tab_wrapper clear">
	<div class="titlebar titlebar_secondary">
		<h3>Weather</h3>
	</div><!-- end .titlebar_secondary -->

	<ul class="tab_header">
		<li class="ui-tabs-selected"><a href="#sidebar_weather_currently">Currently</a></li>
		<li><a href="#sidebar_weather_3day">36-Hour</a></li>
		<li><a href="#sidebar_weather_ugc">Your Photos</a></li>
	</ul>
	
	<div id="sidebar_weather_currently" class="bucket_secondary">
		
		
		
		
		
			
		
		<div class="sidebar_current_weather clear">
	
			<div id="sidebar_current_icon">
				<img src="http://media.caller.com/corp_assets/asphalt/img/weather/icons/12_170.png" width="120px" alt="Light Rain and Breezy" />
			</div> <!-- end #radar -->
	
			<div id="sidebar_current_weather">
				<span class="current_temp_label">Currently</span>
				<span class="current_temp">45<span class="current_temp_degree">&deg;</span></span>
				<span class="current_conditions">Light Rain and Breezy</span>
				<span class="current_wind">Wind: NE 22mph</span>
			</div> <!-- end #current_conditions -->
	
			<div id="sidebar_hi_low">
				<span class="today_temp_label">Today</span>
				<span class="hi_temp">54<span class="current_temp_degree">&deg;</span></span>
				<span class="lo_temp">54<span class="current_temp_degree">&deg;</span></span>
			</div> <!-- end #hi_low -->
			
		</div> <!-- end #weather -->
		
	</div><!-- end #sidebar_weather_currently -->
	
	<div id="sidebar_weather_3day" class="bucket_secondary preventFOUC">
		<div id="sidebar_weather_forecast_3day" class="clear">
			<div class="sidebar_forecast_day">
				<div class="sidebar_weather_day">Sun</div><div class="sidebar_weather_day">10:00 PM</div>
				<img src="http://media.caller.com/corp_assets/asphalt/img/weather/icons/15_100.png" alt="Thunderstorms" />
				<div class="sidebar_forecast_conditions">Thunderstorms</div>
				<div class="sidebar_forecast_hilo">Temp: <span class="temp">56&deg;</span></div>
			</div>
			<div class="sidebar_forecast_day">
				<div class="sidebar_weather_day">Mon</div><div class="sidebar_weather_day">10:00 AM</div>
				<img src="http://media.caller.com/corp_assets/asphalt/img/weather/icons/13_100.png" alt="Mostly Cloudy Showers" />
				<div class="sidebar_forecast_conditions">Mostly Cloudy Showers</div>
				<div class="sidebar_forecast_hilo">Temp: <span class="temp">66&deg;</span></div>
			</div><!-- End sidebar_forecast_day -->
			<div class="sidebar_forecast_day">
				<div class="sidebar_weather_day">Mon</div><div class="sidebar_weather_day">10:00 PM</div>
				<img src="http://media.caller.com/corp_assets/asphalt/img/weather/icons/34_100.png" alt="Mostly Clear" />
				<div class="sidebar_forecast_conditions">Mostly Clear</div>
				<div class="sidebar_forecast_hilo">Temp: <span class="temp">59&deg;</span></div>
			</div><!-- End sidebar_forecast_day -->
			<div class="clear"></div>
			<div class="sidebar_forecast_detail">
				<div class="sidebar_forecast_details">
					<div class="sidebar_forecast_rulepadding">
						<p>Feels Like: 56&deg;</p>
						<p>Humidity: 89%</p>
						<p>Precip: 90%</p>
					</div>
				</div>
			</div><!-- End sidebar_forecast_detail -->
			<div class="sidebar_forecast_detail">
				<div class="sidebar_forecast_details">
					<div class="sidebar_forecast_rulepadding">
						<p>Feels Like: 66&deg;</p>
						<p>Humidity: 84%</p>
						<p>Precip: 50%</p>
					</div>
				</div>
			</div><!-- End sidebar_forecast_detail -->
			<div class="sidebar_forecast_detail">
				<div class="sidebar_forecast_details">
					<div class="sidebar_forecast_rulepadding last">
						<p>Feels Like: 59&deg;</p>
						<p>Humidity: 86%</p>
						<p>Precip: 0%</p>
					</div>
				</div>
			</div><!-- End sidebar_forecast_detail -->
		</div><!-- End sidebar_weather_forecast_3day -->
		
	</div><!-- end #sidebar_weather_3day -->
	
	<div id="sidebar_weather_ugc" class="bucket_secondary preventFOUC">
		<div class="bucket_media sidebar_bucket_media no_border clear">

			
			
<div class="bucket_media_item sidebar_bucket_media_item">
	<a href="http://clickandshare.caller.com/MediaItemView.aspx?id=2012147"><img src="http://c34222.r22.cf0.rackcdn.com/f358de54-a700-407b-acb1-3e538c580aea.jpg" /></a> <a href="http://clickandshare.caller.com/MediaItemView.aspx?id=2012147" title="Pumpkin Patch">Pumpkin Patch </a>
	<div class="date ugc_sidebar">
		10/17/11<br />
		4:23 a.m.<br />
	</div>
</div>

<div class="bucket_media_item sidebar_bucket_media_item">
	<a href="http://clickandshare.caller.com/MediaItemView.aspx?id=1468655"><img src="http://c34222.r22.cf0.rackcdn.com/6962641f-0292-4dfd-b318-9517f845aa45.jpg" /></a> <a href="http://clickandshare.caller.com/MediaItemView.aspx?id=1468655" title="Leon Couty Wildfire 9-5-2011">Leon Couty Wildfire 9-5-2011 </a>
	<div class="date ugc_sidebar">
		9/6/11<br />
		3:37 a.m.<br />
	</div>
</div>

<div class="bucket_media_item sidebar_bucket_media_item">
	<a href="http://clickandshare.caller.com/MediaItemView.aspx?id=1468654"><img src="http://c34222.r22.cf0.rackcdn.com/1dccc5d6-ad26-44ba-ba73-71797898ddd7.jpg" /></a> <a href="http://clickandshare.caller.com/MediaItemView.aspx?id=1468654" title="Leon Couty Wildfire 9-5-2011">Leon Couty Wildfire 9-5-2011 </a>
	<div class="date ugc_sidebar">
		9/6/11<br />
		3:37 a.m.<br />
	</div>
</div>

<div class="bucket_media_item sidebar_bucket_media_item">
	<a href="http://clickandshare.caller.com/MediaItemView.aspx?id=1468653"><img src="http://c34222.r22.cf0.rackcdn.com/298779d3-ef97-47a1-9ed6-a2a2175c769b.jpg" /></a> <a href="http://clickandshare.caller.com/MediaItemView.aspx?id=1468653" title="Leon Couty Wildfire 9-5-2011">Leon Couty Wildfire 9-5-2011 </a>
	<div class="date ugc_sidebar">
		9/6/11<br />
		3:37 a.m.<br />
	</div>
</div>

<div class="bucket_media_item sidebar_bucket_media_item">
	<a href="http://clickandshare.caller.com/MediaItemView.aspx?id=1468652"><img src="http://c34222.r22.cf0.rackcdn.com/8e4e2f5c-0d1c-4fb3-82c5-63aa717a6aa5.jpg" /></a> <a href="http://clickandshare.caller.com/MediaItemView.aspx?id=1468652" title="Leon Couty Wildfire 9-5-2011">Leon Couty Wildfire 9-5-2011 </a>
	<div class="date ugc_sidebar">
		9/6/11<br />
		3:37 a.m.<br />
	</div>
</div>

<div class="bucket_media_item sidebar_bucket_media_item">
	<a href="http://clickandshare.caller.com/MediaItemView.aspx?id=1468650"><img src="http://c34222.r22.cf0.rackcdn.com/75d0e9fc-49e9-453e-95c7-6e9d23f12ea7.jpg" /></a> <a href="http://clickandshare.caller.com/MediaItemView.aspx?id=1468650" title="Leon Couty Wildfire 9-5-2011">Leon Couty Wildfire 9-5-2011 </a>
	<div class="date ugc_sidebar">
		9/6/11<br />
		3:37 a.m.<br />
	</div>
</div>





		</div> <!-- end .bucket_gallery -->
		
	</div><!-- end #sidebar_weather_regional -->

	<div class="sidebar_more_link sidebar_more_link_weather">
		<div class="sidebar_weather_ad_rule"></div>
		<div id="sidebar_weather_ad">
			<div class="adtag" id="WEATHER_SPONSOR"><script>yld_mgr.place_ad_here("WEATHER_SPONSOR");</script> </div>
		</div>
		<a href="/weather/" title="More Corpus Christi Weather">More Weather &raquo;</a>
	</div>

</div><!-- end #sidebar_weather -->

					
					
					
					
					
					
					
						
					
						
						<div id="sidebar_events" class="tab_wrapper">
	<div class="titlebar titlebar_secondary">
		<h3>Calendar</h3>
	</div><!-- end .titlebar titlebar_secondary -->


	<ul class="cal_tab_header clear">
		
			<li class="cal_tab_first ui-tabs-selected">
				<a href="#Feb12" value="2012-02-12">
					<span class="cal_tab_day">Sunday</span> <span class="cal_tab_month">Feb</span> <span class="cal_tab_date">12</span>
				</a>
			</li>
		
			<li >
				<a href="#Feb13" value="2012-02-13">
					<span class="cal_tab_day">Monday</span> <span class="cal_tab_month">Feb</span> <span class="cal_tab_date">13</span>
				</a>
			</li>
		
			<li >
				<a href="#Feb14" value="2012-02-14">
					<span class="cal_tab_day">Tuesday</span> <span class="cal_tab_month">Feb</span> <span class="cal_tab_date">14</span>
				</a>
			</li>
		
		
		<li class="cal_tab_last">
			<a href="#calendar" class="browse_cal">
				<span class="cal_tab_day">More</span> <span class="cal_tab_month">BROWSE</span> <span class="cal_tab_icon">Icon</span>
			</a>
		</li>
	</ul>
	
	
		<div id="Feb12" class="bucket_secondary">
			
			<ul class="sidebar_list">
				
					<li class="odd clear">
						<h4><a href="/events/goto/10215/" class="browse_list_title" title="Valentine photos at Sunrise Mall">Valentine photos at Sunrise Mall</a> <a href="/places/-/" class="browse_list_venue" title=" ">Sunrise Mall</a></h4>
						<h5 class="browse_list_time">1 p.m.</h5>
					</li>			
				
					<li class="even clear">
						<h4><a href="/events/goto/10157/" class="browse_list_title" title="LULAC Council No. 1 is hosting Preliminary meetings">LULAC Council No. 1 is hosting Preliminary meetings</a> <a href="/places/-/" class="browse_list_venue" title=" "> LULAC Building, 3516 Holly Road</a></h4>
						<h5 class="browse_list_time">2 p.m.</h5>
					</li>			
				
					<li class="odd clear">
						<h4><a href="/events/goto/10143/" class="browse_list_title" title="The Romeros ">The Romeros </a> <a href="/places/-/" class="browse_list_venue" title=" ">Corpus Christi Cathedral, 505 N. Upper Broadway. </a></h4>
						<h5 class="browse_list_time">7 p.m.</h5>
					</li>			
				
			
			</ul>
			
			<div class="sidebar_more_link sidebar_more_link_events">
				<a href="/events/" title="More Corpus Christi Events">More Events &raquo;</a>
			</div>
			
		</div> <!-- end #Feb12 -->
	
		<div id="Feb13" class="bucket_secondary preventFOUC">
			
			<ul class="sidebar_list">
				
					<li class="even clear">
						<h4><a href="/events/goto/10094/" class="browse_list_title" title="Nebraska State Day Dinner">Nebraska State Day Dinner</a> <a href="/places/-/" class="browse_list_venue" title=" ">Butter Churn Cafe, 228 West Wheeler St., Aransas Pass</a></h4>
						<h5 class="browse_list_time">4 p.m.</h5>
					</li>			
				
					<li class="odd clear">
						<h4><a href="/events/goto/10215/" class="browse_list_title" title="Valentine photos at Sunrise Mall">Valentine photos at Sunrise Mall</a> <a href="/places/-/" class="browse_list_venue" title=" ">Sunrise Mall</a></h4>
						<h5 class="browse_list_time">5 p.m.</h5>
					</li>			
				
					<li class="even clear">
						<h4><a href="/events/goto/10101/" class="browse_list_title" title="Port Aransas Historical Society’s Winter Lecture Series">Port Aransas Historical Society’s Winter Lecture Series</a> <a href="/places/-/" class="browse_list_venue" title=" ">Port Aransas Museum at the intersection of Alister and Brundrett streets</a></h4>
						<h5 class="browse_list_time">7:30 p.m.</h5>
					</li>			
				
					<li class="odd clear">
						<h4><a href="/events/goto/9419/" class="browse_list_title" title="Corpus Christi Parks & Recreation Department Classes">Corpus Christi Parks & Recreation Department Classes</a> <a href="/places/-/" class="browse_list_venue" title=" ">different times/locations</a></h4>
						<h5 class="browse_list_time"></h5>
					</li>			
				
					<li class="even clear">
						<h4><a href="/events/goto/9976/" class="browse_list_title" title="Square Dance Lessons">Square Dance Lessons</a> <a href="" class="browse_list_venue" title="">Lindale Senior Center, 3135 Swantner Drive</a></h4>
						<h5 class="browse_list_time">6:30 p.m.</h5>
					</li>			
				
			
			</ul>
			
			<div class="sidebar_more_link sidebar_more_link_events">
				<a href="/events/" title="More Corpus Christi Events">More Events &raquo;</a>
			</div>
			
		</div> <!-- end #Feb13 -->
	
		<div id="Feb14" class="bucket_secondary preventFOUC">
			
			<ul class="sidebar_list">
				
					<li class="odd clear">
						<h4><a href="/events/goto/9739/" class="browse_list_title" title="John Leguizamo – live on stage">John Leguizamo – live on stage</a> <a href="/places/-/" class="browse_list_venue" title=" ">American Bank Center</a></h4>
						<h5 class="browse_list_time"></h5>
					</li>			
				
					<li class="even clear">
						<h4><a href="/events/goto/9999/" class="browse_list_title" title="Winter lecture series in February">Winter lecture series in February</a> <a href="/places/-/" class="browse_list_venue" title=" ">Christi Museum of Science and History, 1900 N. Chaparral St.</a></h4>
						<h5 class="browse_list_time"></h5>
					</li>			
				
					<li class="odd clear">
						<h4><a href="/events/goto/10135/" class="browse_list_title" title="Valentine Sing-a-Grams">Valentine Sing-a-Grams</a> <a href="/places/-/" class="browse_list_venue" title=" ">local in Corpus Christi</a></h4>
						<h5 class="browse_list_time"></h5>
					</li>			
				
					<li class="even clear">
						<h4><a href="/events/goto/10182/" class="browse_list_title" title="CBAHU has membership meeting">CBAHU has membership meeting</a> <a href="/places/-/" class="browse_list_venue" title=" ">Hilton Garden Inn, 6717 S. Padre Island Drive</a></h4>
						<h5 class="browse_list_time">8 a.m.</h5>
					</li>			
				
					<li class="odd clear">
						<h4><a href="/events/goto/10131/" class="browse_list_title" title="DMC: Guest Lecture on African-American Philosophy">DMC: Guest Lecture on African-American Philosophy</a> <a href="/places/-/" class="browse_list_venue" title=" "> </a></h4>
						<h5 class="browse_list_time">11 a.m.</h5>
					</li>			
				
			
			</ul>
			
			<div class="sidebar_more_link sidebar_more_link_events">
				<a href="/events/" title="More Corpus Christi Events">More Events &raquo;</a>
			</div>
			
		</div> <!-- end #Feb14 -->
	
	
	<div class="ajax_loader"><img src="http://media.caller.com/corp_assets/asphalt/img/ajax-loader.gif" alt="Loading content" /><p>Loading...</p></div>
	
	<div id="calendar" class="bucket_secondary">
		
		<div id="calendar_results"></div>
		
		<div class="sidebar_more_link sidebar_more_link_events">
			<a href="/events/" title="More Corpus Christi Events">More Events &raquo;</a>
		</div>
	</div><!-- end #cal -->
	
</div><!-- end #sidebar_events -->
					
					
					
					
					
					
					
						<div class="bigbox_wrapper clear">
	<div class="bigbox">
		<div class="adtag" id="BIGBOX_2"><script>yld_mgr.place_ad_here("BIGBOX_2");</script> </div>
	</div> <!-- end .bigbox -->
</div> <!-- end .bigbox_wrapper -->

					
					
					
					
					
					
					
	
	


<div id="sidebar_business_directory" class="tab_wrapper clear">
	
	<div class="titlebar titlebar_secondary">
		
		<h3>Business Directory</h3>
		
	</div><!-- end .titlebar_secondary -->

	<ul class="tab_header">
		<li><a href="#sidebar_business_directory_search">Search</a></li>
		<li><a href="#sidebar_business_directory_links">Browse</a></li>
	</ul>
	
	<div id="sidebar_business_directory_search" class="bucket_secondary clear">
		
		<FORM STYLE='margin:0;' TARGET=_top METHOD=GET ACTION="http://local.caller.com/search.pg" class="submit_form default_form">
			<label for="id_business">
				<span class="submit_label">Business: <span class="formtip">e.g. salon</span></span>
				<input name="q" style="width: 160px;" maxlength="2048" value="" type="text" class="CatTxtBxMojo">
			</label>
			<label for="id_business">
				<span class="submit_label">Location: <span class="formtip">e.g. Corpus Christi, TX</span></span>
				<input name="z" style="width: 160px;" maxlength="2048" value="Corpus Christi, TX" type="TEXT" class="CatTxtBxMojo">
			</label>
			
			<div class="CatBtnSubmitMojo">
				<INPUT TYPE=SUBMIT STYLE='font-size:8pt;' VALUE=Search>            
			</div>
			
			<br />
			
			<div class="sidebar_more_link">
				
				<div class="sidebar_description">
					
					Powered by <a style="text-decoration: none;" href="http://www.local.com">Local.com</a>
				
				</div>
				
			</div>
			
		</form>
		
	</div><!-- end #sidebar_business_directory_search -->
	
	<div id="sidebar_business_directory_links" class="bucket_secondary clear">	
		
		<ul class="bucket_list bucket_list_2col clear">
			<li><a href="http://local.caller.com/Corpus+Christi+TX/auto+dealers.zq.html" title="Corpus Christi Auto Dealers">Auto Dealers</a></li>
			<li><a href="http://local.caller.com/Corpus+Christi+TX/auto+repair.zq.html" title="Corpus Christi Auto Repair">Auto Repair</a></li>
			<li><a href="http://local.caller.com/Corpus+Christi+TX/books.zq.html" title="Corpus Christi Books">Books</a></li>
			<li><a href="http://local.caller.com/Corpus+Christi+TX/carpet+cleaning.zq.html" title="Corpus Christi Carpet Cleaning">Carpet Cleaning</a></li>
			<li><a href="http://local.caller.com/Corpus+Christi+TX/child+care.zq.html" title="Corpus Christi Child Care">Child Care</a></li>
			<li><a href="http://local.caller.com/Corpus+Christi+TX/coffee+shops.zq.html" title="Corpus Christi Coffee Shops">Coffee Shops</a></li>
			<li><a href="http://local.caller.com/Corpus+Christi+TX/dentists.zq.html" title="Corpus Christi Dentists">Dentists</a></li>
			<li><a href="http://local.caller.com/Corpus+Christi+TX/doctors.zq.html" title="Corpus Christi Doctors">Doctors</a></li>
			<li><a href="http://local.caller.com/Corpus+Christi+TX/flowers.zq.html" title="Corpus Christi Florists">Florists</a></li>
			<li><a href="http://local.caller.com/Corpus+Christi+TX/furniture.zq.html" title="Corpus Christi Furniture">Furniture</a></li>
			<li><a href="http://local.caller.com/Corpus+Christi+TX/golf+courses.zq.html" title="Corpus Christi Golf Courses">Golf Courses</a></li>
			<li><a href="http://local.caller.com/Corpus+Christi+TX/gyms.zq.html" title="Corpus Christi Gyms">Gyms</a></li>
			<li><a href="http://local.caller.com/Corpus+Christi+TX/beauty+salons.zq.html" title="Corpus Christi Hair Salons">Hair Salons</a></li>
			<li><a href="http://local.caller.com/Corpus+Christi+TX/hotels.zq.html" title="Corpus Christi Hotels">Hotels</a></li>
			<li><a href="http://local.caller.com/Corpus+Christi+TX/insurance.zq.html" title="Corpus Christi Insurance">Insurance</a></li>
			<li><a href="http://local.caller.com/Corpus+Christi+TX/jewelry.zq.html" title="Corpus Christi Jewelry">Jewelry</a></li>
			<li><a href="http://local.caller.com/Corpus+Christi+TX/lawn+service.zq.html" title="Corpus Christi Lawn Services">Lawn Services</a></li>
			<li><a href="http://local.caller.com/Corpus+Christi+TX/locksmiths.zq.html" title="Corpus Christi Locksmiths">Locksmiths</a></li>
			<li><a href="http://local.caller.com/Corpus+Christi+TX/movers.zq.html" title="Corpus Christi Movers">Movers</a></li>
			<li><a href="http://local.caller.com/Corpus+Christi+TX/pizza.zq.html" title="Corpus Christi Pizza">Pizza</a></li>
			<li><a href="http://local.caller.com/Corpus+Christi+TX/plumbers.zq.html" title="Corpus Christi Plumbibg">Plumbing</a></li>
			<li><a href="http://local.caller.com/Corpus+Christi+TX/realtors.zq.html" title="Corpus Christi Realtors">Realtors</a></li>
			<li><a href="http://local.caller.com/Corpus+Christi+TX/remodeling+contractors.zq.html" title="Corpus Christi Remodeling">Remodeling</a></li>
			<li><a href="http://local.caller.com/Corpus+Christi+TX/restaurants.zq.html" title="Corpus Christi Restaurants">Restaurants</a></li>
			<li><a href="http://local.caller.com/Corpus+Christi+TX/storage.zq.html" title="Corpus Christi Storage">Storage</a>
			<li><a href="http://local.caller.com/Corpus+Christi+TX/veterinarians.zq.html" title="Corpus Christi Veterinarians">Veterinarians</a></li>
		</ul>
		
		<div class="sidebar_more_link">
			
			<div class="sidebar_description">Powered by <a href="http://www.local.com/" title="Powered by Local.com">Local.com</a></div>
			
			<a title="Local.com Full Directory" href="http://local.caller.com/Corpus+Christi+TX.z.html">Full Directory &raquo;</a>
			
		</div>
		
	</div><!-- #sidebar_business_directory_links -->
	
</div><!-- end #sidebar_business_directory -->












	


				
			</div> <!-- end #secondary_content -->
		
		

		</div><!-- end #content_wrapper -->
		
		
		
		
	<div id="content_match_wrapper">
		<div id="content_match">
			<!-- yahoo content match --><script type="text/javascript" language="JavaScript">
                                                 ctxt_ad_interface = 'http://cm.npc-scripps.overture.com/js_1_0/';
                                                 ctxt_ad_width = 728 ;
                                                 ctxt_ad_height = 90;
                                                 ctxt_ad_source = 'npc_scripps_corpuschristicaller_3p_t2_ctxt';
                                                 ctxt_ad_config = '7894763060';
                                                 ctxt_ad_id = 'sports';
                                                 ctxt_ad_type = 'sports';
                                                 ctxt_ad_url = window.location.href ; 
                                                 ctxt_css_url = 'http://media.scrippsnewspapers.com/yahoo/yahoo_cm.css' ; 
                                                 </script>
                                                 <script type="text/javascript" language="JavaScript" src="http://cm.npc-scripps.overture.com/partner/js/ypn.js"></script>
<!-- /yahoo content match -->
		</div> <!-- end #content_match -->
	</div> <!-- end #content_match_wrapper -->


		
		
			
			
				
				
				
			
		
		
		
	



	
	
	
	<div id="skybox_wrapper" class="skybox_wrapper_interior">
		<div id="skybox_title" class="clear">
			<h3>Features</h3>
			<div id="skybox_controls">
				<ul class="carousel_pagination"></ul>
			</div> <!-- end #skybox_controls -->
		</div> <!-- end #skybox_title -->

		<ul id="skybox_carousel" class="carousel">
			
			
				<li id="carousel_page1">
					
					<div class="skybox">
						<script src="http://web.caller.com/ellington/promos/skyboxes/js/skybox_pos1.js"></script>
					</div> <!-- end .skybox -->
					
					<div class="skybox">
						<script src="http://web.caller.com/ellington/promos/skyboxes/js/skybox_pos2.js"></script>
					</div> <!-- end .skybox -->
					
					<div class="skybox">
						<script src="http://web.caller.com/ellington/promos/skyboxes/js/skybox_pos3.js"></script>
					</div> <!-- end .skybox -->
					
				</li><!-- End carousel_page1 -->
			
	
		</ul> <!-- end #skybox_carousel -->

	</div> <!-- end #skybox_wrapper -->


		
		<div id="footer" class="clear">
			
			<div id="cellar">
				
<div style="width:540px; height:225px; border-right:#1a1a1a 1px solid;"
<dl>
	<dt>On Caller.com:</dt>
	<dd><a href="/e-edition/" title="E-Edition">E-Edition</a></dd>
	<dd><a href="http://www.caller.com/entertainment/horoscopes/" title="Horoscopes">Horoscopes</a></dd>
	<dd><a href="http://www.caller.com/contests/" title="Caller.com contests">Contests</a></dd>
	<dd><a href="http://www.caller.com/breakingnews/" title="Sign up for Breaking News">Breaking News</a></dd>
	<dd><a href="http://www.caller.com/police/" title="LIVE Police Scanner">Police Scanner</a></dd>
</dl>

<dl>
	<dt>Online Exclusives:</dt>
	<dd><a href="http://blogs.caller.com/" title="Caller.com Blogs">Blogs</a></dd>
	<dd><a href="/tv/" title="TV listings">TV listings</a></dd>
	<dd><a href="http://bestofthebest.caller.com/" title="Best of the Best">Best of the Best</a></dd>
	<dd><a href="/events/" title="Events Calendar"> Events Calendar</a></dd>
</dl>

<dl>
	<dt>Useful Links:</dt>
	<dd><a href="http://www.caller.com/place_ad/" title="Place a Classified Ad">Place a Classified Ad</a></dd>
	<dd><a href="http://www.caller.com/backphotos/" title="Order Photo Reprints">Photo Reprints</a></dd>
	<dd><a href="http://www.caller.com/backissues/" title="Order Back Issues">Back Issues</a></dd>
	<dd><a href="http://www.caller.com/archives/" title="Newspaper archives">Archives</a></dd>
</dl>
<dl>
	<dt>Need help?</dt>
	<dd><a href="/staff/" title="Contact Us"> Contact Us</a> |</dd>
	<dd><a href="/about/" title="About Us"> About Us</a> |</dd>
	<dd><a href="/sitemap/" title="Site Map"> Site Map</a> |</dd>
	<dd><a href="http://www.caller.com/subscribe" title="Caller-Times newspaper">Subscriber Services</a></dd>
</dl>
<dl>
	<dt><a href="/texas-high-school-football/" title="Texas High School Football" style="color:#C2C2C2!important;"> Texas High School Football:</a></dt>
	<dd><a href="/texas-high-school-football/" title="Corpus Christi"> Corpus Christi</a> |</dd>
	<dd><a href="http://www.reporternews.com/texas-high-school-football/" title="Abilene"> Abilene</a> |</dd>
	<dd><a href="http://www.gosanangelo.com/sports/texas-high-school-football/" title="San Angelo"> San Angelo</a> |</dd>
	<dd><a href="http://www.timesrecordnews.com/news/sports/high-school/football/" title="Wichita Falls"> Wichita Falls</a></dd>
</dl>
<dl>
<dt>Special Features</dt>
<dd><a href="http://jobsearch.local-jobs.monster.com/Search.aspx?wt.mc_n=hjnpsearch&ch=callertimes&q=&where=Corpus%20Christi&re=130&cy=us&brd=1" title="Find Corpus Christi Jobs"> Find Corpus Christi Jobs</a> |</dd>
</dl>

<dl id="business_directory">
	<dt id="business_directory_prompt">Business Directory:</dt>
	<dd id="business_directory_links">
		<dl>
			<dd><a href="http://local.caller.com/corpus+christi+tx/apartments.zq.html">Corpus Christi Apartments</a></dd>
			<dd><a href="http://local.caller.com/corpus+christi+tx/attorneys.zq.html">Corpus Christi Attorneys</a></dd>
			<dd><a href="http://local.caller.com/corpus+christi+tx/auto+dealers.zq.html">Corpus Christi Auto Dealers</a></dd>
			<dd><a href="http://local.caller.com/corpus+christi+tx/auto+parts.zq.html">Corpus Christi Auto Parts</a></dd>
			<dd><a href="http://local.caller.com/corpus+christi+tx/auto+repair.zq.html">Corpus Christi Auto Repair</a></dd>
			<dd><a href="http://local.caller.com/corpus+christi+tx/beauty+salons.zq.html">Corpus Christi Beauty Salons</a></dd>
			<dd><a href="http://local.caller.com/corpus+christi+tx/car+rental.zq.html">Corpus Christi Car Rental</a></dd>
			<dd><a href="http://local.caller.com/corpus+christi+tx/dentists.zq.html">Corpus Christi Dentists</a></dd>
			<dd><a href="http://local.caller.com/corpus+christi+tx/doctors.zq.html">Corpus Christi Doctors</a></dd>
			<dd><a href="http://local.caller.com/corpus+christi+tx/flowers.zq.html">Corpus Christi Flowers</a></dd>
			<dd><a href="http://local.caller.com/corpus+christi+tx/hotels.zq.html">Corpus Christi Hotels</a></dd>
			<dd><a href="http://local.caller.com/corpus+christi+tx/insurance.zq.html">Corpus Christi Insurance</a></dd>
			<dd><a href="http://local.caller.com/corpus+christi+tx/loans.zq.html">Corpus Christi Loans</a></dd>
			<dd><a href="http://local.caller.com/corpus+christi+tx/mortgages.zq.html">Corpus Christi Mortgages</a></dd>
			<dd><a href="http://local.caller.com/corpus+christi+tx/movers.zq.html">Corpus Christi Movers</a></dd>
			<dd><a href="http://local.caller.com/corpus+christi+tx/pizza.zq.html">Corpus Christi Pizza</a></dd>
			<dd><a href="http://local.caller.com/corpus+christi+tx/realtors.zq.html">Corpus Christi Realtors</a></dd>
			<dd><a href="http://local.caller.com/corpus+christi+tx/restaurants.zq.html">Corpus Christi Restaurants</a></dd>
			<dd><a href="http://local.caller.com/corpus+christi+tx/storage.zq.html">Corpus Christi Storage</a></dd>
			<dd><a href="http://local.caller.com/corpus+christi+tx/tax+preparation.zq.html">Corpus Christi Tax Preparation</a></dd>
			<dd><a href="http://local.caller.com/corpus+christi+tx/travel.zq.html">Corpus Christi Travel</a></dd>
			<dd><a href="http://local.caller.com/allads.q.html">Featured</a></dd>
			<dd><a href="http://local.caller.com/corpus+christi+tx.z.html">More...</a></dd>
		</dl>
	</dd>
</dl>
</div>
			</div> <!-- end #cellar -->
			
			<div id="site_tools">
				
<div style="float:left; padding-top:2px; width:164px; margin-left:-50px;">
<h2 style="color:#C2C2C2; border-bottom:1px solid; padding-bottom:5px;"><a target="_blank" href="http://local.caller.com" style="color:#C2C2C2;" title="Corpus Christi Business Directory">Business Directory</a></h2>
<FORM STYLE='margin:0;color:#C2C2C2;background:transparent;border:0;padding:12px 0;' TARGET=_top METHOD=GET ACTION="http://local.caller.com/search.pg" class="submit_form default_form">

<label for="id_business"><span class="submit_label">Business: <span class="formtip">e.g. salon</span></span>

<input name="q" style="width: 160px;color:#666666;" maxlength="2048" value="" type="text" class="CatTxtBxMojo">
</label>

<label for="id_business"><span class="submit_label">Location: <span class="formtip">e.g. Corpus Christi, TX</span></span>
<input name="z" style="width: 160px;color:#666666;" maxlength="2048" value="Corpus Christi, TX" type="TEXT" class="CatTxtBxMojo">
</label>
<div class="CatBtnSubmitMojo">
<INPUT TYPE=SUBMIT STYLE='font-size:8pt;' VALUE=Search>            </div>
<br />

<div style="font-size:11px;">
<div>Powered by <a style="text-decoration: none;" href="http://www.local.com">Local.com</a></div>
</div>
</form>
</div>

<div style="float: right; width: 149px; margin-left: 40px;padding-top:2px;">
	<h2 style="color:#C2C2C2; border-bottom:1px solid; padding-bottom:5px; margin-bottom:12px;">
		<a target="_blank" href="http://m.caller.com" title="Corpus Christi Caller-Times mobile site" style="color:#C2C2C2;">Mobile Applications</a>
	</h2>
	<a target="_blank" href="https://market.android.com/details?id=com.scripps.caller.mobile" title="Corpus Christi Caller-Times android application">
		<img src="http://web.caller.com/ellington/images/android.png" alt="Corpus Christi Caller-Times android application" style="margin-bottom: 8px;">
	</a>

	<a target="_blank" href="http://itunes.apple.com/us/app/callertimes/id373648239?mt=8&ign-mpt=uo%3D4" title="Corpus Christi Caller-Times iphone application">
		<img src="http://web.caller.com/ellington/images/appleiphone.png" alt="Corpus Christi Caller-Times iphone application" style="margin-bottom: 8px;">
	</a>
    <a target="_blank" href="http://itunes.apple.com/us/app/ccct-e-edition/id440583721?mt=8" title="Corpus Christi Caller-Times ipad application">
		<img src="http://web.caller.com/ellington/images/appleipad.png" alt="Corpus Christi Caller-Times ipad application" style="margin-bottom: 8px;">
	</a>
	<a target="_blank" href="http://www.amazon.com/Corpus-Christi-Caller-Times/dp/B002HRF7IE" title="Corpus Christi Caller-Times kindle subscription">
		<img src="http://web.caller.com/ellington/images/kindle.png" alt="Corpus Christi Caller-Times kindle subscription" style="margin-bottom: 0px;">
	</a>
</div>

			</div> <!-- end #site_tools -->
			
		</div> <!-- end #footer -->
			
		<div id="copyright" class="clear">
			<img src="http://media.caller.com/corp_assets/asphalt/img/sing_logo.gif" alt="Scripps Interactive Newspaper Group" /> 
			Scripps Interactive Newspapers Group<br/>
			2012 The E.W. Scripps Co.<br/>
			<span class="partners"><a href="/local-news/partners/" title="More news from our local partners">More news from our local partners &raquo;</a></span>
			<a href="/privacy/" title="Privacy Policy">Privacy Policy</a> | <a href="/privacy/terms/" title="User Agreement">User Agreement</a> | <a href="/privacy/#about_our_ads">About Our Ads</a>
			

			

		</div> <!-- end #copyright -->
		
		
	</div> <!-- end #page_wrapper -->
	
	


		<!-- Javascript -->
		<script src="http://media.caller.com/corp_assets/asphalt/js/jquery-1.4.1.min.js" type="text/javascript"></script>
		<script src="http://media.caller.com/corp_assets/asphalt/js/ui/jquery-ui-1.7.1.core-tabs.js" type="text/javascript"></script>
		
		
			<script src="http://media.caller.com/corp_assets/asphalt/js/plugins.scriptalizer.js" type="text/javascript"></script>
		
	
		<!--[if lte IE 6]>
			<script src="http://media.caller.com/corp_assets/asphalt/js/supersleight-min.js" type="text/javascript"></script>
		<![endif]-->
		
		
		<script src="http://media.caller.com/corp_assets/asphalt/js/jSING/core/jSING.core.yui.2011-11-07_16-10-58.js" type="text/javascript"></script>
		<script src="http://media.caller.com/corp_assets/asphalt/js/jSING/news/jSING.news.yui.2011-11-08_16-28-17.js" type="text/javascript"></script>
		<script type="text/javascript" src="https://platform.twitter.com/widgets.js"></script>

			<script src="http://media.caller.com/corp_assets/asphalt/js/jSING.video-html5.yui.js" type="text/javascript"></script>
		
		
		<!-- rpx_login_global -->
	    <script type="text/javascript">
	      var rpxJsHost = (("https:" == document.location.protocol) ? "https://" : "http://static.");
	      document.write(unescape("%3Cscript src='" + rpxJsHost +
	    "rpxnow.com/js/lib/rpx.js' type='text/javascript'%3E%3C/script%3E"));
	    </script>

	    <script type="text/javascript">
	      RPXNOW.overlay = true;
	      RPXNOW.language_preference = 'en';
	    </script>
	

		<!-- facebook like/recommended script -->
		<div id="fb-root"></div>
		<script>
		  window.fbAsyncInit = function() {
		    FB.init({appId: '336616136443', status: true, cookie: true,
		             xfbml: true, oauth: true});
		  };
		  (function() {
		    var e = document.createElement('script'); e.async = true;
		    e.src = document.location.protocol +
		      '//connect.facebook.net/en_US/all.js';
		    document.getElementById('fb-root').appendChild(e);
		  }());
		</script>

		<script type="text/javascript">
			$('#nav li').hover(
				function () {
					//show its submenu
					$('ul', this).slideDown(100);

				}, 
				function () {
					//hide its submenu
					$('ul', this).slideUp(100);			
				}
			);
		</script>
	
<script type="text/javascript">
var optJsHost = (("https:" == document.location.protocol) ? "https://" : "http://");
document.write(unescape("%3Cscript src='" + optJsHost + 
"service.optify.net/opt.js' type='text/javascript'%3E%3C/script%3E"));
</script>
<script type="text/javascript"> try { _opt.view("N1B0L6JH"); } catch(err) {} </script>



	
	<script type="text/javascript">
		/* Javascript for initializing functions when the page loads */
		
	
	jSING.fonts.init();
	jSING.apptap.registerAppTapEvent("a.digg", "Event13", false);
	jSING.apptap.registerAppTapEvent("a.facebook", "Event14", false);
	jSING.apptap.registerAppTapEvent("a.linkedin", "Event15", false);
	jSING.apptap.registerAppTapEvent("a.myspace", "Event16", false);
	jSING.apptap.registerAppTapEvent("a.twitter", "Event21", false);
	jSING.apptap.registerAppTapEvent("a.gplus_share", "Event59", false);
	// Callback event letting us know that the tweet was actually published.
	twttr.events.bind('tweet', jSING.socialShare.twitterCallback);
	
	
	

		
		
		
	
	</script>
	
	
	<script type="text/javascript" src="http://media.caller.com/corp_assets/asphalt/js/swfobject-2.2.js"></script>
	<script type="text/javascript">jSING.videoPlayer.embedPlayers();</script>
	

</body>
</html>

