/**
 * +----------------------------------------+
 * +--- Clinique du travail S.A. -----------+
 * +----------------------------------------+
 * +--- JS layout functions ----------------+
 *
 * Contains all the functions used in the layout.
 * (uses jQuery)
 *
 * @author	Olivier Nguyen
 */

// to load when the browser is ready
$(document).ready(function()
{
	if($("#sub_fixed ul li[class=selected]").length != 0) 
	{
		submenuID = $("#sub_fixed ul li[class=selected]").attr("id").split("_"); // ex: cat-4-sub-5
		$("#navbar ul li[id="+submenuID[0]+"]").addClass("selected");
		
		// Cas special avec l'accueil
		if(submenuID[0] == 'cat-2') 
		{
			$("#navbar ul li[id="+submenuID[0]+"]").find("img").attr("src", "images/home_sel.gif");
		}
	}
});
