// Copyright (c) 1996-1997 Athenia Associates.
// http://www.webreference.com/js/
// License is granted if and only if this entire
// copyright notice is included. By Tomer Shiran.

function setCookie (name, value, expires, path, domain, secure) {
var curCookie = name + "=" + escape(value) + (expires ? "; expires=" + expires : "") +
(path ? "; path=" + path : "") + (domain ? "; domain=" + domain : "") + (secure ? "secure" : "");
document.cookie = curCookie;
}

function getCookie (name) {
var prefix = name + '=';
var c = document.cookie;
var nullstring = '';
var cookieStartIndex = c.indexOf(prefix);
if (cookieStartIndex == -1)
return nullstring;
var cookieEndIndex = c.indexOf(";", cookieStartIndex + prefix.length);
if (cookieEndIndex == -1)
cookieEndIndex = c.length;
return unescape(c.substring(cookieStartIndex + prefix.length, cookieEndIndex));
}

function deleteCookie (name, path, domain) {
if (getCookie(name))
document.cookie = name + "=" + ((path) ? "; path=" + path : "") +
((domain) ? "; domain=" + domain : "") + "; expires=Thu, 01-Jan-70 00:00:01 GMT";
}

function fixDate (date) {
var base = new Date(0);
var skew = base.getTime();
if (skew > 0)
date.setTime(date.getTime() - skew);
}

function rememberMe (f) {
var now = new Date();
fixDate(now);
now.setTime(now.getTime() + 365 * 24 * 60 * 60 * 1000);
now = now.toGMTString();
if (f.author != undefined)
setCookie('mtcmtauth', f.author.value, now, '/', '', '');
if (f.email != undefined)
setCookie('mtcmtmail', f.email.value, now, '/', '', '');
if (f.url != undefined)
setCookie('mtcmthome', f.url.value, now, '/', '', '');
}

function forgetMe (f) {
deleteCookie('mtcmtmail', '/', '');
deleteCookie('mtcmthome', '/', '');
deleteCookie('mtcmtauth', '/', '');
f.email.value = '';
f.author.value = '';
f.url.value = '';
}

function hideDocumentElement(id) {
var el = document.getElementById(id);
if (el) el.style.display = 'none';
}

function showDocumentElement(id) {
var el = document.getElementById(id);
if (el) el.style.display = 'block';
}

function showAnonymousForm() {
showDocumentElement('comments-form');

captcha_timer = setInterval('delayShowCaptcha()', 1000);

}

var captcha_timer;
function delayShowCaptcha() {
clearInterval(captcha_timer);
var div = document.getElementById('comments-open-captcha');
if (div) {
div.innerHTML = '<div class="label"><label for="captcha_code">Captcha:</label></div><div class="field"><input type="hidden" name="token" value="AfWTgxZkpQOIz7gA21cHIZkL0vjc5QrLcoyhx2rb" /><img src="http://www.insidesocal.com/mt/mt-comments.cgi/captcha/402/AfWTgxZkpQOIz7gA21cHIZkL0vjc5QrLcoyhx2rb" width="150" height="35" /><br /><input name="captcha_code" id="captcha_code" value="" autocomplete="off" /><p>Type the characters you see in the picture above.</p></div>';
}
}


var commenter_name;
var commenter_blog_ids;
var is_preview;
var mtcmtmail;
var mtcmtauth;
var mtcmthome;

function individualArchivesOnLoad(commenter_name) {



hideDocumentElement('trackbacks-info');



// comments are allowed but registration not required
if ( commenter_name &&
( !commenter_id
|| commenter_blog_ids.indexOf("'402'") > -1))
{
hideDocumentElement('comment-form-name');
hideDocumentElement('comment-form-email');
} else if (is_preview) {
delayShowCaptcha();
} else {
hideDocumentElement('comments-form');
}



if (document.comments_form) {
if (!commenter_name && (document.comments_form.email != undefined) &&
(mtcmtmail = getCookie("mtcmtmail")))
document.comments_form.email.value = mtcmtmail;
if (!commenter_name && (document.comments_form.author != undefined) &&
(mtcmtauth = getCookie("mtcmtauth")))
document.comments_form.author.value = mtcmtauth;
if (document.comments_form.url != undefined &&
(mtcmthome = getCookie("mtcmthome")))
document.comments_form.url.value = mtcmthome;
if (document.comments_form["bakecookie"]) {
if (mtcmtauth || mtcmthome) {
document.comments_form.bakecookie.checked = true;
} else {
document.comments_form.bakecookie.checked = false;
}
}
}
}

function writeCommenterGreeting(commenter_name, entry_id, blog_id, commenter_id, commenter_url) {

if ( commenter_name &&
( !commenter_id
|| commenter_blog_ids.indexOf("'" + blog_id + "'") > -1))
{
var url;
if (commenter_id) {
url = 'http://www.insidesocal.com/mt/mt-comments.cgi?__mode=edit_profile&commenter=' + commenter_id + '&blog_id=' + blog_id;
if (entry_id) {
url += '&entry_id=' + entry_id;
} else {
url += '&static=1';
}
} else if (commenter_url) {
url = commenter_url;
} else {
url = null;
}
var content = 'Thanks for signing in, ';
if (url) {
content += '<a href="' + url + '">' + commenter_name + '</a>';
} else {
content += commenter_name;
}
content += '. Now you can comment. (<a href="http://www.insidesocal.com/mt/mt-comments.cgi?__mode=handle_sign_in&amp;static=1&amp;logout=1&entry_id=' + entry_id + '">sign out</a>)';
document.write(content);
} else if (commenter_name) {
document.write('You do not have permission to comment on this blog. (<a href="http://www.insidesocal.com/mt/mt-comments.cgi?__mode=handle_sign_in&amp;static=1&amp;logout=1&entry_id=' + entry_id + '">sign out</a>)');
} else {

document.write('<a href="http://www.insidesocal.com/mt/mt-comments.cgi?__mode=login&entry_id=' + entry_id + '&blog_id=' + blog_id + '&static=1">Sign in' + '</a>' + ' to comment on this entry, or <a href="javascript:void(0);" onclick="showAnonymousForm();">comment anonymously.</a>');

}

}


if ('www.insidesocal.com' != 'www.insidesocal.com') {
document.write('<script src="http://www.insidesocal.com/mt/mt-comments.cgi?__mode=cmtr_name_js"></script>');
} else {
commenter_name = getCookie('commenter_name');
ids = getCookie('commenter_id').split(':');
commenter_id = ids[0];
commenter_blog_ids = ids[1];
commenter_url = getCookie('commenter_url');
}


function MVheadlines() {

var pageLocation = new String(window.location);
var locationLength = pageLocation.length;
var contentIdStart = pageLocation.indexOf("blogs.");
var contentIdEnd = pageLocation.indexOf(".com");
var contentId = new String(pageLocation.substring(contentIdStart+6, contentIdEnd));



if (contentId == 'dailynews') {
document.write('
    <h2>LA Daily News Most Viewed</h2>
    <ul>
        
        <li>
        
    
        <a href="http://www.dailynews.com/ci_10988885?source=rss_viewed">FIRE UPDATE: 8,000 acres burned, at least 500 homes burned in Sylmar fire</a>
    


        </li>
        
        <li>
        
    
        <a href="http://www.dailynews.com/ci_10990499?source=rss_viewed">Shaq: Feud with Kobe was `designed by Phil'</a>
    


        </li>
        
        <li>
        
    
        <a href="http://www.dailynews.com/ci_10993709?source=rss_viewed">Key info for those affected by Sayre Fire</a>
    


        </li>
        
        <li>
        
    
        <a href="http://www.dailynews.com/ci_10993975?source=rss_viewed">Fire and chaos as Southern California burns</a>
    


        </li>
        
        <li>
        
    
        <a href="http://www.dailynews.com/ci_10990484?source=rss_viewed">Dodgers rescind offer to Manny Ramirez</a>
    


        </li>
        
        <li>
        
    
        <a href="http://www.dailynews.com/ci_10994421?source=rss_viewed">Firefighters battle wind-whipped blaze in Sylmar</a>
    


        </li>
        
        <li>
        
    
        <a href="http://www.dailynews.com/ci_10979225?source=rss_viewed">Over 100 homes burn in Montecito fire</a>
    


        </li>
        
        <li>
        
    
        <a href="http://www.dailynews.com/ci_10989648?source=rss_viewed">At least 100 homes gone in Montecito</a>
    


        </li>
        
        <li>
        
    
        <a href="http://www.dailynews.com/ci_10990483?source=rss_viewed">Lakers handed first loss by Pistons</a>
    


        </li>
        
        <li>
        
    
        <a href="http://www.dailynews.com/ci_10990489?source=rss_viewed">Apathy awaits UCLA's Neuheisel in Seattle</a>
    


        </li>
        
    </ul>

');
}
else if (contentId == 'sbsun') {
document.write('
    <h2>San Bernardino County Sun Most Viewed</h2>
    <ul>
        
        <li>
        
    
        <a href="http://www.sbsun.com/ci_11003829?source=rss_viewed">Car catches fire, burns brush</a>
    


        </li>
        
        <li>
        
    
        <a href="http://www.sbsun.com/ci_10982034?source=rss_viewed">Environmental groups plan lawsuit over kangaroo rat habitat slashing </a>
    


        </li>
        
        <li>
        
    
        <a href="http://www.sbsun.com/ci_11003835?source=rss_viewed">Santa Ana winds weaken; progress seen on Sayre Fire</a>
    


        </li>
        
        <li>
        
    
        <a href="http://www.sbsun.com/ci_10989643?source=rss_viewed">Crime and Public Safety, Nov. 15</a>
    


        </li>
        
        <li>
        
    
        <a href="http://www.sbsun.com/ci_11002514?source=rss_viewed">Police question three people after suspicious fire in SB</a>
    


        </li>
        
        <li>
        
    
        <a href="http://www.sbsun.com/ci_11002512?source=rss_viewed">Chiefs of staff paid $200,000 salaries in SB County</a>
    


        </li>
        
        <li>
        
    
        <a href="http://www.sbsun.com/ci_10990017?source=rss_viewed">Local 2003 dismembered body case airing on &quot;America's Most Wanted&quot; </a>
    


        </li>
        
        <li>
        
    
        <a href="http://www.sbsun.com/ci_11001660?source=rss_viewed">Postmus picks new assistant assessor for SB County</a>
    


        </li>
        
        <li>
        
    
        <a href="http://www.sbsun.com/ci_11002513?source=rss_viewed">Wildfire rages on</a>
    


        </li>
        
        <li>
        
    
        <a href="http://www.sbsun.com/ci_11000214?source=rss_viewed">Containment begins of fire threatening Diamond Bar, Chino Hills</a>
    


        </li>
        
    </ul>

');
}
else if (contentId == 'dailybulletin') {
document.write('
    <h2>Inland Valley Daily Bulletin Most Viewed</h2>
    <ul>
        
        <li>
        
    
        <a href="http://www.dailybulletin.com/ci_10800972?source=rss_viewed">Former Los Angeles Rams kicker Tony Zendejas to stand trial </a>
    


        </li>
        
        <li>
        
    
        <a href="http://www.dailybulletin.com/ci_11003883?source=rss_viewed">In flames' path</a>
    


        </li>
        
        <li>
        
    
        <a href="http://www.dailybulletin.com/ci_11000214?source=rss_viewed">Containment begins of fire threatening Diamond Bar, Chino Hills</a>
    


        </li>
        
        <li>
        
    
        <a href="http://www.dailybulletin.com/ci_11002474?source=rss_viewed">Chino Hills man rescues his 1955 Ford Thunderbird</a>
    


        </li>
        
        <li>
        
    
        <a href="http://www.dailybulletin.com/ci_11002079?source=rss_viewed">Upland resident speaks out at City Council meetings</a>
    


        </li>
        
        <li>
        
    
        <a href="http://www.dailybulletin.com/ci_11001661?source=rss_viewed">Rialto Unified to review severance package for Davis-Herring</a>
    


        </li>
        
        <li>
        
    
        <a href="http://www.dailybulletin.com/ci_11002549?source=rss_viewed">CIF Central Division just got a lot tougher</a>
    


        </li>
        
        <li>
        
    
        <a href="http://www.dailybulletin.com/ci_9163018?source=rss_viewed">'Murder ranch' mania</a>
    


        </li>
        
        <li>
        
    
        <a href="http://www.dailybulletin.com/ci_10980628?source=rss_viewed">Three administrators sacked at Upland Christian Schools</a>
    


        </li>
        
        <li>
        
    
        <a href="http://www.dailybulletin.com/ci_10921120?source=rss_viewed">Rancho Cucamonga man, 18, shot, killed while out for a walk</a>
    


        </li>
        
    </ul>

');
}
else if (contentId == 'sgvtribune') {
document.write('
    <h2>San Gabriel Valley Tribune Most Viewed</h2>
    <ul>
        
        <li>
        
    
        <a href="http://www.sgvtribune.com/ci_10994144?source=rss_viewed">100 evacuated from Brea</a>
    


        </li>
        
        <li>
        
    
        <a href="http://www.sgvtribune.com/ci_10993959?source=rss_viewed">FIRE UPDATE: 6,500 acres burned, at least 500 homes burned in Sylmar fire</a>
    


        </li>
        
        <li>
        
    
        <a href="http://www.sgvtribune.com/ci_10990865?source=rss_viewed">Man killed in crash identified</a>
    


        </li>
        
        <li>
        
    
        <a href="http://www.sgvtribune.com/ci_10991900?source=rss_viewed">Amat routed, awaits its fate</a>
    


        </li>
        
        <li>
        
    
        <a href="http://www.sgvtribune.com/ci_10995675?source=rss_viewed">Men allegedly slit female cab driver's throat</a>
    


        </li>
        
        <li>
        
    
        <a href="http://www.sgvtribune.com/ci_10981029?source=rss_viewed">League punishes youth team for poor sportsmanship</a>
    


        </li>
        
        <li>
        
    
        <a href="http://www.sgvtribune.com/ci_10990854?source=rss_viewed">Rooftop burglars hit stores</a>
    


        </li>
        
        <li>
        
    
        <a href="http://www.sgvtribune.com/ci_10983731?source=rss_viewed">Man found dead in Rio Hondo River</a>
    


        </li>
        
        <li>
        
    
        <a href="http://www.sgvtribune.com/ci_10990843?source=rss_viewed">Truck spills chemicals on 605 Freeway</a>
    


        </li>
        
        <li>
        
    
        <a href="http://www.sgvtribune.com/ci_10983663?source=rss_viewed">'Turkeys' to run free at library</a>
    


        </li>
        
    </ul>

');
}
else if (contentId == 'whittierdailynews') {
document.write('
    <h2>Whittier Daily News Most Viewed</h2>
    <ul>
        
        <li>
        
    
        <a href="http://www.whittierdailynews.com/ci_10994144?source=rss_viewed">100 evacuated from Brea</a>
    


        </li>
        
        <li>
        
    
        <a href="http://www.whittierdailynews.com/ci_10983731?source=rss_viewed">Man found dead in Rio Hondo River</a>
    


        </li>
        
        <li>
        
    
        <a href="http://www.whittierdailynews.com/ci_10989503?source=rss_viewed">Around Whittier</a>
    


        </li>
        
        <li>
        
    
        <a href="http://www.whittierdailynews.com/ci_10970176?source=rss_viewed">Drive-by shooting suspect at large</a>
    


        </li>
        
        <li>
        
    
        <a href="http://www.whittierdailynews.com/ci_10983660?source=rss_viewed">Holiday tamale party for Hispanic Outreach Taskforce</a>
    


        </li>
        
        <li>
        
    
        <a href="http://www.whittierdailynews.com/ci_10990373?source=rss_viewed">Schurr wraps up perfect league season, 20-12</a>
    


        </li>
        
        <li>
        
    
        <a href="http://www.whittierdailynews.com/ci_10995675?source=rss_viewed">Men allegedly slit female cab driver's throat</a>
    


        </li>
        
        <li>
        
    
        <a href="http://www.whittierdailynews.com/ci_10990359?source=rss_viewed">Alemany finishes St. Paul's season</a>
    


        </li>
        
        <li>
        
    
        <a href="http://www.whittierdailynews.com/ci_10996768?source=rss_viewed">Devastating fires cause widespread evacuations</a>
    


        </li>
        
        <li>
        
    
        <a href="http://www.whittierdailynews.com/ci_10996765?source=rss_viewed">500 mobile homes destroyed in Sylmar</a>
    


        </li>
        
    </ul>

');
}
else if (contentId == 'pasadenastarnews') {
document.write('
    <h2>Pasadena Star-News Most Viewed</h2>
    <ul>
        
        <li>
        
    
        <a href="http://www.pasadenastarnews.com/ci_10990360?source=rss_viewed">De La Hoya has become a happy warrior</a>
    


        </li>
        
        <li>
        
    
        <a href="http://www.pasadenastarnews.com/ci_10994144?source=rss_viewed">100 evacuated from Brea</a>
    


        </li>
        
        <li>
        
    
        <a href="http://www.pasadenastarnews.com/ci_10993959?source=rss_viewed">FIRE UPDATE: 6,500 acres burned, at least 500 homes burned in Sylmar fire</a>
    


        </li>
        
        <li>
        
    
        <a href="http://www.pasadenastarnews.com/ci_10990502?source=rss_viewed">Inaugural marathon coming to the streets of Pasadena</a>
    


        </li>
        
        <li>
        
    
        <a href="http://www.pasadenastarnews.com/ci_10985272?source=rss_viewed">Air Force jets fly over Pasadena</a>
    


        </li>
        
        <li>
        
    
        <a href="http://www.pasadenastarnews.com/ci_10973878?source=rss_viewed">Man shot in front of Altadena liquor store</a>
    


        </li>
        
        <li>
        
    
        <a href="http://www.pasadenastarnews.com/ci_10992175?source=rss_viewed">Muir beats Pasadena in 55th Turkey Tussle</a>
    


        </li>
        
        <li>
        
    
        <a href="http://www.pasadenastarnews.com/ci_10978495?source=rss_viewed">Drive-by shooting reported in Northwest</a>
    


        </li>
        
        <li>
        
    
        <a href="http://www.pasadenastarnews.com/ci_10986394?source=rss_viewed">Prop. 8 protest to be held Saturday at City Hall</a>
    


        </li>
        
        <li>
        
    
        <a href="http://www.pasadenastarnews.com/ci_10990698?source=rss_viewed">Monrovia captures RHL title with win</a>
    


        </li>
        
    </ul>

');
}
else if (contentId == 'presstelegram') {
document.write('
    <h2>Long Beach Press Telegram Most Viewed</h2>
    <ul>
        
        <li>
        
    
        <a href="http://www.presstelegram.com/ci_10975584?source=rss_viewed">Long Beach police still looking for suspect, more information in killing of 5 people</a>
    


        </li>
        
        <li>
        
    
        <a href="http://www.presstelegram.com/ci_10995286?source=rss_viewed">Demonstrators take Prop 8 protest to steps of Long Beach City Hall</a>
    


        </li>
        
        <li>
        
    
        <a href="http://www.presstelegram.com/ci_10990680?source=rss_viewed">Perfect mark still intact</a>
    


        </li>
        
        <li>
        
    
        <a href="http://www.presstelegram.com/ci_10988951?source=rss_viewed">BREAKING NEWS: Wind-stoked &lt;br /&gt; wildfires devastate SoCal &lt;br /&gt; hills for third straight day</a>
    


        </li>
        
        <li>
        
    
        <a href="http://www.presstelegram.com/ci_10990673?source=rss_viewed">Lancers flying high once again</a>
    


        </li>
        
        <li>
        
    
        <a href="http://www.presstelegram.com/ci_10990064?source=rss_viewed">L.B. schools freeze spending</a>
    


        </li>
        
        <li>
        
    
        <a href="http://www.presstelegram.com/ci_10993682?source=rss_viewed">&lt;b&gt;BREAKING NEWS&lt;/b&gt;:&lt;br /&gt;Wildfire breaks out in Sylmar in San Fernando Valley</a>
    


        </li>
        
        <li>
        
    
        <a href="http://www.presstelegram.com/ci_10975892?source=rss_viewed">Wall Street stages huge rebound</a>
    


        </li>
        
        <li>
        
    
        <a href="http://www.presstelegram.com/ci_10973786?source=rss_viewed">Fire damages 2-story PVE home</a>
    


        </li>
        
        <li>
        
    
        <a href="http://www.presstelegram.com/ci_10916595?source=rss_viewed">Long Beach man sentenced for killing his AA sponsor</a>
    


        </li>
        
    </ul>

');
}
else if (contentId == 'dailybreeze') {
document.write('
    <h2>Daily Breeze Most Viewed</h2>
    <ul>
        
        <li>
        
    
        <a href="http://www.dailybreeze.com/ci_10993967?source=rss_viewed">Peninsula blaze controlled</a>
    


        </li>
        
        <li>
        
    
        <a href="http://www.dailybreeze.com/ci_10988895?source=rss_viewed">Wildfire roars into Sylmar; nearly 500 mobile homes destroyed</a>
    


        </li>
        
        <li>
        
    
        <a href="http://www.dailybreeze.com/ci_10990460?source=rss_viewed">Stolen truck rams into Torrance plane hangars</a>
    


        </li>
        
        <li>
        
    
        <a href="http://www.dailybreeze.com/ci_10990256?source=rss_viewed">Ex-Manhattan Beach sergeant to be arraigned</a>
    


        </li>
        
        <li>
        
    
        <a href="http://www.dailybreeze.com/ci_10990476?source=rss_viewed">Teen leads HB protest of Prop. 8</a>
    


        </li>
        
        <li>
        
    
        <a href="http://www.dailybreeze.com/ci_10980649?source=rss_viewed">Police arrest 5 Torrance youths</a>
    


        </li>
        
        <li>
        
    
        <a href="http://www.dailybreeze.com/ci_10992121?source=rss_viewed">Narbonne is undisputed Marine League &lt;br /&gt;champ; likely top seed in City playoffs</a>
    


        </li>
        
        <li>
        
    
        <a href="http://www.dailybreeze.com/ci_10992117?source=rss_viewed">Determined Torrance hands North its 1st loss</a>
    


        </li>
        
        <li>
        
    
        <a href="http://www.dailybreeze.com/ci_10993972?source=rss_viewed">At least 18 buildings burn in Orange County fire</a>
    


        </li>
        
        <li>
        
    
        <a href="http://www.dailybreeze.com/ci_10986934?source=rss_viewed">Hospital workers recognize patient as missing Carson man</a>
    


        </li>
        
    </ul>

');
}
else if (contentId == 'la') {
document.write('
    <h2>LA Daily News Most Viewed</h2>
    <ul>
        
        <li>
        
    
        <a href="http://www.dailynews.com/ci_10988885?source=rss_viewed">FIRE UPDATE: 8,000 acres burned, at least 500 homes burned in Sylmar fire</a>
    


        </li>
        
        <li>
        
    
        <a href="http://www.dailynews.com/ci_10990499?source=rss_viewed">Shaq: Feud with Kobe was `designed by Phil'</a>
    


        </li>
        
        <li>
        
    
        <a href="http://www.dailynews.com/ci_10993709?source=rss_viewed">Key info for those affected by Sayre Fire</a>
    


        </li>
        
        <li>
        
    
        <a href="http://www.dailynews.com/ci_10993975?source=rss_viewed">Fire and chaos as Southern California burns</a>
    


        </li>
        
        <li>
        
    
        <a href="http://www.dailynews.com/ci_10990484?source=rss_viewed">Dodgers rescind offer to Manny Ramirez</a>
    


        </li>
        
        <li>
        
    
        <a href="http://www.dailynews.com/ci_10994421?source=rss_viewed">Firefighters battle wind-whipped blaze in Sylmar</a>
    


        </li>
        
        <li>
        
    
        <a href="http://www.dailynews.com/ci_10979225?source=rss_viewed">Over 100 homes burn in Montecito fire</a>
    


        </li>
        
        <li>
        
    
        <a href="http://www.dailynews.com/ci_10989648?source=rss_viewed">At least 100 homes gone in Montecito</a>
    


        </li>
        
        <li>
        
    
        <a href="http://www.dailynews.com/ci_10990483?source=rss_viewed">Lakers handed first loss by Pistons</a>
    


        </li>
        
        <li>
        
    
        <a href="http://www.dailynews.com/ci_10990489?source=rss_viewed">Apathy awaits UCLA's Neuheisel in Seattle</a>
    


        </li>
        
    </ul>

');
}
else {
document.write('
    <h2>LA Daily News Most Viewed</h2>
    <ul>
        
        <li>
        
    
        <a href="http://www.dailynews.com/ci_10988885?source=rss_viewed">FIRE UPDATE: 8,000 acres burned, at least 500 homes burned in Sylmar fire</a>
    


        </li>
        
        <li>
        
    
        <a href="http://www.dailynews.com/ci_10990499?source=rss_viewed">Shaq: Feud with Kobe was `designed by Phil'</a>
    


        </li>
        
        <li>
        
    
        <a href="http://www.dailynews.com/ci_10993709?source=rss_viewed">Key info for those affected by Sayre Fire</a>
    


        </li>
        
        <li>
        
    
        <a href="http://www.dailynews.com/ci_10993975?source=rss_viewed">Fire and chaos as Southern California burns</a>
    


        </li>
        
        <li>
        
    
        <a href="http://www.dailynews.com/ci_10990484?source=rss_viewed">Dodgers rescind offer to Manny Ramirez</a>
    


        </li>
        
        <li>
        
    
        <a href="http://www.dailynews.com/ci_10994421?source=rss_viewed">Firefighters battle wind-whipped blaze in Sylmar</a>
    


        </li>
        
        <li>
        
    
        <a href="http://www.dailynews.com/ci_10979225?source=rss_viewed">Over 100 homes burn in Montecito fire</a>
    


        </li>
        
        <li>
        
    
        <a href="http://www.dailynews.com/ci_10989648?source=rss_viewed">At least 100 homes gone in Montecito</a>
    


        </li>
        
        <li>
        
    
        <a href="http://www.dailynews.com/ci_10990483?source=rss_viewed">Lakers handed first loss by Pistons</a>
    


        </li>
        
        <li>
        
    
        <a href="http://www.dailynews.com/ci_10990489?source=rss_viewed">Apathy awaits UCLA's Neuheisel in Seattle</a>
    


        </li>
        
    </ul>

');
}
}
