/*Articles Section*/

//Function used to determine the selected category image in the Articles section
function ShowArticleCategory(){    
    var domain = new Array();
    domain = location.href.split("/");

    if(domain[4] != "")
    {
	    $("#" + domain[4]).removeClass("titleNews");
	    $("#" + domain[4]).addClass("titleNewsSelect");	
    }
};
