// 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="L5MhyyGevKe9UAAzWt33XhQ18SrZMTMvJoY22Dhz" /><img src="http://www.insidesocal.com/mt/mt-comments.cgi/captcha/334/L5MhyyGevKe9UAAzWt33XhQ18SrZMTMvJoY22Dhz" 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');



if ( commenter_name &&
( !commenter_id
|| commenter_blog_ids.indexOf("'334'") > -1))
{
hideDocumentElement('comment-form-name');
hideDocumentElement('comment-form-email');
showDocumentElement('comments-open-text');
showDocumentElement('comments-open-footer');
} else {
hideDocumentElement('comments-open-data');
hideDocumentElement('comments-open-text');
hideDocumentElement('comments-open-footer');
}



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.');

}

}


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_10968403?source=rss_viewed">Michael Jackson gives up deed to Neverland </a>
    


        </li>
        
        <li>
        
    
        <a href="http://www.dailynews.com/ci_10970297?source=rss_viewed">USC's receiving work a two-man job</a>
    


        </li>
        
        <li>
        
    
        <a href="http://www.dailynews.com/ci_10970352?source=rss_viewed">Lakers showing defensive prowess</a>
    


        </li>
        
        <li>
        
    
        <a href="http://www.dailynews.com/ci_10970319?source=rss_viewed">Plucky 7 for Lakers</a>
    


        </li>
        
        <li>
        
    
        <a href="http://www.dailynews.com/ci_10970432?source=rss_viewed">L.A. County to join Prop. 8 suits</a>
    


        </li>
        
        <li>
        
    
        <a href="http://www.dailynews.com/ci_10968630?source=rss_viewed">Bush admin. issues rule aimed at Internet gambling ban</a>
    


        </li>
        
        <li>
        
    
        <a href="http://www.dailynews.com/ci_10976060?source=rss_viewed">LAUSD freezes all purchasing</a>
    


        </li>
        
        <li>
        
    
        <a href="http://www.dailynews.com/ci_10970320?source=rss_viewed">Honeycutt is jewel of Bruins' basketball recruiting class</a>
    


        </li>
        
        <li>
        
    
        <a href="http://www.dailynews.com/ci_10970337?source=rss_viewed">UCLA basketball sloppy, but wins opener</a>
    


        </li>
        
        <li>
        
    
        <a href="http://www.dailynews.com/ci_10963962?source=rss_viewed">L.A. holds off Hornets to remain undefeated</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_10963856?source=rss_viewed">Crime and Public Safety, November 13</a>
    


        </li>
        
        <li>
        
    
        <a href="http://www.sbsun.com/ci_10968711?source=rss_viewed">No on Prop. 8 rally produces anxious minutes when gun appears </a>
    


        </li>
        
        <li>
        
    
        <a href="http://www.sbsun.com/ci_10969966?source=rss_viewed">Nearly a half-million in I.E. to participate in earthquake drill</a>
    


        </li>
        
        <li>
        
    
        <a href="http://www.sbsun.com/ci_10969052?source=rss_viewed">Kids get to SOAR with a new playground</a>
    


        </li>
        
        <li>
        
    
        <a href="http://www.sbsun.com/ci_10969943?source=rss_viewed">District's vote, superintendent's severance pay draws questions</a>
    


        </li>
        
        <li>
        
    
        <a href="http://www.sbsun.com/ci_10969942?source=rss_viewed">Proposal to buy local assets might be doomed</a>
    


        </li>
        
        <li>
        
    
        <a href="http://www.sbsun.com/ci_10960567?source=rss_viewed">Four people killed in plane crash are identified</a>
    


        </li>
        
        <li>
        
    
        <a href="http://www.sbsun.com/ci_10961007?source=rss_viewed">Crime and Public Safety, November 12</a>
    


        </li>
        
        <li>
        
    
        <a href="http://www.sbsun.com/ci_10938738?source=rss_viewed">Party prank at Redlands home leaves boy badly burned</a>
    


        </li>
        
        <li>
        
    
        <a href="http://www.sbsun.com/ci_10969119?source=rss_viewed">Law Library for SB County gets gift of two gold coins</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_10969049?source=rss_viewed">Upland High students send fruit sailing </a>
    


        </li>
        
        <li>
        
    
        <a href="http://www.dailybulletin.com/ci_10960469?source=rss_viewed">Pomona Unifed School District superintendent honored by state, nominated for national award </a>
    


        </li>
        
        <li>
        
    
        <a href="http://www.dailybulletin.com/ci_10968558?source=rss_viewed">SMASH warrant sweep nets 30 arrests in area</a>
    


        </li>
        
        <li>
        
    
        <a href="http://www.dailybulletin.com/ci_10969966?source=rss_viewed">Nearly a half-million in I.E. to participate in earthquake drill</a>
    


        </li>
        
        <li>
        
    
        <a href="http://www.dailybulletin.com/ci_10968559?source=rss_viewed">Police: Man in chase a gang member</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>
        
        <li>
        
    
        <a href="http://www.dailybulletin.com/ci_10969066?source=rss_viewed">School board's vote on severance pay causes stir</a>
    


        </li>
        
        <li>
        
    
        <a href="http://www.dailybulletin.com/ci_10970129?source=rss_viewed">Faculty, students upset at plan to buy land</a>
    


        </li>
        
        <li>
        
    
        <a href="http://www.dailybulletin.com/ci_10931488?source=rss_viewed">Ontario woman accused of lewd act with 13-year-old autistic boy </a>
    


        </li>
        
        <li>
        
    
        <a href="http://www.dailybulletin.com/ci_10962397?source=rss_viewed">Pomona police probe slaying</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_10970762?source=rss_viewed">Trial rescheduled in shooting, dragging death</a>
    


        </li>
        
        <li>
        
    
        <a href="http://www.sgvtribune.com/ci_10970758?source=rss_viewed">High school athletes commit to colleges</a>
    


        </li>
        
        <li>
        
    
        <a href="http://www.sgvtribune.com/ci_10970645?source=rss_viewed">Suit against Glendora police to be amended</a>
    


        </li>
        
        <li>
        
    
        <a href="http://www.sgvtribune.com/ci_10961176?source=rss_viewed">Amat ousted after CIF admits error</a>
    


        </li>
        
        <li>
        
    
        <a href="http://www.sgvtribune.com/ci_10969964?source=rss_viewed">Frank Girardot: Shooting range saga; Know your limitations</a>
    


        </li>
        
        <li>
        
    
        <a href="http://www.sgvtribune.com/ci_10974549?source=rss_viewed">Union Station kidnapping victims taken to Baldwin Park </a>
    


        </li>
        
        <li>
        
    
        <a href="http://www.sgvtribune.com/ci_10970767?source=rss_viewed">Preps notebook: Football playoff berths on the line tonight</a>
    


        </li>
        
        <li>
        
    
        <a href="http://www.sgvtribune.com/ci_10970787?source=rss_viewed">Make a wreath at Nature Center </a>
    


        </li>
        
        <li>
        
    
        <a href="http://www.sgvtribune.com/ci_10966435?source=rss_viewed">California braces for massive earthquake drill</a>
    


        </li>
        
        <li>
        
    
        <a href="http://www.sgvtribune.com/ci_10974625?source=rss_viewed">Baldwin Park to test public health disaster response</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_10970176?source=rss_viewed">Drive-by shooting suspect at large</a>
    


        </li>
        
        <li>
        
    
        <a href="http://www.whittierdailynews.com/ci_10958469?source=rss_viewed">In Whittier, hard work bears fruit for mother turned entrepreneur</a>
    


        </li>
        
        <li>
        
    
        <a href="http://www.whittierdailynews.com/ci_10955157?source=rss_viewed">Man killed in car-to-car shooting</a>
    


        </li>
        
        <li>
        
    
        <a href="http://www.whittierdailynews.com/ci_10974549?source=rss_viewed">Union Station kidnapping victims taken to Baldwin Park </a>
    


        </li>
        
        <li>
        
    
        <a href="http://www.whittierdailynews.com/ci_10966435?source=rss_viewed">California braces for massive earthquake drill</a>
    


        </li>
        
        <li>
        
    
        <a href="http://www.whittierdailynews.com/ci_10970143?source=rss_viewed">Emergency management plans to face test</a>
    


        </li>
        
        <li>
        
    
        <a href="http://www.whittierdailynews.com/ci_10952227?source=rss_viewed">Girl falls out of moving SUV</a>
    


        </li>
        
        <li>
        
    
        <a href="http://www.whittierdailynews.com/ci_10969964?source=rss_viewed">Frank Girardot: Shooting range saga; Know your limitations</a>
    


        </li>
        
        <li>
        
    
        <a href="http://www.whittierdailynews.com/ci_10970172?source=rss_viewed">County supervisors support challenges to Prop. 8</a>
    


        </li>
        
        <li>
        
    
        <a href="http://www.whittierdailynews.com/ci_10958817?source=rss_viewed">Former addict delivered</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_10965976?source=rss_viewed">Man claims $11 million lottery jackpot</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_10970551?source=rss_viewed">Standout area athletes ink national letters of intent</a>
    


        </li>
        
        <li>
        
    
        <a href="http://www.pasadenastarnews.com/ci_10966435?source=rss_viewed">California braces for massive earthquake drill</a>
    


        </li>
        
        <li>
        
    
        <a href="http://www.pasadenastarnews.com/ci_10970543?source=rss_viewed">Mt. Wilson telescope marks 100 years</a>
    


        </li>
        
        <li>
        
    
        <a href="http://www.pasadenastarnews.com/ci_10959816?source=rss_viewed">Salon, employee, customer robbed at gunpoint</a>
    


        </li>
        
        <li>
        
    
        <a href="http://www.pasadenastarnews.com/ci_10960940?source=rss_viewed">Muir not overlooking Pasadena</a>
    


        </li>
        
        <li>
        
    
        <a href="http://www.pasadenastarnews.com/ci_10970557?source=rss_viewed">Arcadia's Golper bound to be a Bruin</a>
    


        </li>
        
        <li>
        
    
        <a href="http://www.pasadenastarnews.com/ci_10970541?source=rss_viewed">County supervisors support challenges to Prop. 8</a>
    


        </li>
        
        <li>
        
    
        <a href="http://www.pasadenastarnews.com/ci_10974549?source=rss_viewed">Union Station kidnapping victims taken to Baldwin Park </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_10973688?source=rss_viewed">What would happen if a 7.8 quake hits?</a>
    


        </li>
        
        <li>
        
    
        <a href="http://www.presstelegram.com/ci_10975035?source=rss_viewed">Crime reporter latest victim of violent Ciudad Juarez</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_10970373?source=rss_viewed">Longoria enjoying newfound popularity</a>
    


        </li>
        
        <li>
        
    
        <a href="http://www.presstelegram.com/ci_10970099?source=rss_viewed">Los Cerritos Wetlands plan is complex</a>
    


        </li>
        
        <li>
        
    
        <a href="http://www.presstelegram.com/ci_10970092?source=rss_viewed">CSULB will cut student enrollment</a>
    


        </li>
        
        <li>
        
    
        <a href="http://www.presstelegram.com/ci_10970098?source=rss_viewed">Aquarium goes with the flow</a>
    


        </li>
        
        <li>
        
    
        <a href="http://www.presstelegram.com/ci_10970375?source=rss_viewed">Ready to renounce critics</a>
    


        </li>
        
        <li>
        
    
        <a href="http://www.presstelegram.com/ci_10969100?source=rss_viewed">Thursday's Letters to the Editor</a>
    


        </li>
        
    </ul>

');
}
else if (contentId == 'dailybreeze') {
document.write('
    <h2>Daily Breeze Most Viewed</h2>
    <ul>
        
        <li>
        
    
        <a href="http://www.dailybreeze.com/ci_10970407?source=rss_viewed">Hawthorne killing cuts dream short</a>
    


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


        </li>
        
        <li>
        
    
        <a href="http://www.dailybreeze.com/ci_10975429?source=rss_viewed">Police nab 1 of 3 burglary suspects in North Torrance</a>
    


        </li>
        
        <li>
        
    
        <a href="http://www.dailybreeze.com/ci_10970607?source=rss_viewed">Sarkisian shrugs off the doubters</a>
    


        </li>
        
        <li>
        
    
        <a href="http://www.dailybreeze.com/ci_10973912?source=rss_viewed">San Pedro drowning ruled a suicide</a>
    


        </li>
        
        <li>
        
    
        <a href="http://www.dailybreeze.com/ci_10973919?source=rss_viewed">Small plane lands safely in Torrance</a>
    


        </li>
        
        <li>
        
    
        <a href="http://www.dailybreeze.com/ci_10965119?source=rss_viewed">KKK allegedly kills woman trying to leave initiation</a>
    


        </li>
        
        <li>
        
    
        <a href="http://www.dailybreeze.com/ci_10968360?source=rss_viewed">Fresh &amp; Easy: 100 stores and counting</a>
    


        </li>
        
        <li>
        
    
        <a href="http://www.dailybreeze.com/ci_10970408?source=rss_viewed">What would happen if a 7.8 quake hits?</a>
    


        </li>
        
        <li>
        
    
        <a href="http://www.dailybreeze.com/ci_10970412?source=rss_viewed">Burglary delays teen center's opening</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_10968403?source=rss_viewed">Michael Jackson gives up deed to Neverland </a>
    


        </li>
        
        <li>
        
    
        <a href="http://www.dailynews.com/ci_10970297?source=rss_viewed">USC's receiving work a two-man job</a>
    


        </li>
        
        <li>
        
    
        <a href="http://www.dailynews.com/ci_10970352?source=rss_viewed">Lakers showing defensive prowess</a>
    


        </li>
        
        <li>
        
    
        <a href="http://www.dailynews.com/ci_10970319?source=rss_viewed">Plucky 7 for Lakers</a>
    


        </li>
        
        <li>
        
    
        <a href="http://www.dailynews.com/ci_10970432?source=rss_viewed">L.A. County to join Prop. 8 suits</a>
    


        </li>
        
        <li>
        
    
        <a href="http://www.dailynews.com/ci_10968630?source=rss_viewed">Bush admin. issues rule aimed at Internet gambling ban</a>
    


        </li>
        
        <li>
        
    
        <a href="http://www.dailynews.com/ci_10976060?source=rss_viewed">LAUSD freezes all purchasing</a>
    


        </li>
        
        <li>
        
    
        <a href="http://www.dailynews.com/ci_10970320?source=rss_viewed">Honeycutt is jewel of Bruins' basketball recruiting class</a>
    


        </li>
        
        <li>
        
    
        <a href="http://www.dailynews.com/ci_10970337?source=rss_viewed">UCLA basketball sloppy, but wins opener</a>
    


        </li>
        
        <li>
        
    
        <a href="http://www.dailynews.com/ci_10963962?source=rss_viewed">L.A. holds off Hornets to remain undefeated</a>
    


        </li>
        
    </ul>

');
}
else {
document.write('
    <h2>LA Daily News Most Viewed</h2>
    <ul>
        
        <li>
        
    
        <a href="http://www.dailynews.com/ci_10968403?source=rss_viewed">Michael Jackson gives up deed to Neverland </a>
    


        </li>
        
        <li>
        
    
        <a href="http://www.dailynews.com/ci_10970297?source=rss_viewed">USC's receiving work a two-man job</a>
    


        </li>
        
        <li>
        
    
        <a href="http://www.dailynews.com/ci_10970352?source=rss_viewed">Lakers showing defensive prowess</a>
    


        </li>
        
        <li>
        
    
        <a href="http://www.dailynews.com/ci_10970319?source=rss_viewed">Plucky 7 for Lakers</a>
    


        </li>
        
        <li>
        
    
        <a href="http://www.dailynews.com/ci_10970432?source=rss_viewed">L.A. County to join Prop. 8 suits</a>
    


        </li>
        
        <li>
        
    
        <a href="http://www.dailynews.com/ci_10968630?source=rss_viewed">Bush admin. issues rule aimed at Internet gambling ban</a>
    


        </li>
        
        <li>
        
    
        <a href="http://www.dailynews.com/ci_10976060?source=rss_viewed">LAUSD freezes all purchasing</a>
    


        </li>
        
        <li>
        
    
        <a href="http://www.dailynews.com/ci_10970320?source=rss_viewed">Honeycutt is jewel of Bruins' basketball recruiting class</a>
    


        </li>
        
        <li>
        
    
        <a href="http://www.dailynews.com/ci_10970337?source=rss_viewed">UCLA basketball sloppy, but wins opener</a>
    


        </li>
        
        <li>
        
    
        <a href="http://www.dailynews.com/ci_10963962?source=rss_viewed">L.A. holds off Hornets to remain undefeated</a>
    


        </li>
        
    </ul>

');
}
}
