﻿$(function() {

});

function arrange_news_item() {
    $(this).css("left", intNewsItemLeft + "px");
    intNewsItemLeft += $(this).width() + 30;
}

function apply_image_extension() {
    if ($.browser.msie && $.browser.version == "6.0") {
        $(this).attr("src", $(this).attr("src") + ".gif");
    }else{
        $(this).attr("src", $(this).attr("src") + ".png");
    }
    
}


