/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
$(document).ready(function(){
    if ($('#anchorsHolder').length > 0) {
        setAnchorLinks('#anchorsHolder a');
        setAnchors('#contentNewsHolder .enewsContent');
        setOrangeBackground();
    }
})
function setAnchorLinks(div){
    $(div).each(function(e){
        var ind = e+1;
        $(this).attr('href', '#story' + ind);
    });
}

function setAnchors(className){
    $(className).each(function(e){
        var ind = e+1;
        $(this).prepend('<a id="story' + ind + '"></a>')
    });
}

function setOrangeBackground(){
    $('.enewsContent:nth-child(even)').css('background', '#fed289');
}

