
function updateImages(section){
	var product = window.location.pathname;
	// Find the product first
	switch(product)
        {
            case "orsini": //product
				
            break;
			case "medici":
            break;
            case "qforms":
            break;
			case "ccs":
            break;
        }
}
	 
$(document).ready(function(){
	//Add a active class to the selected link (need to deselect the other li's in the nav)
	$("#features ul.sections li a").click(function(){
		$("ul.sections li").addClass("active");
	});
	
	
});