﻿$(document).ready(function () {

    //icr-clients
    $(".icr-clients div.carousalout").hide(); 
    $(".icr-clients div.carousalout.act").show(); $('.icr-clients h2').click(function(){ 
	    if (!$(this).children("a").hasClass("act"))
        {
	        $(".icr-clients div.carousalout").slideUp("normal");
  		    $(".icr-clients div.carousalout.act").removeClass("act");
		    $(this).next("div.carousalout").addClass("act");
		    $(".icr-clients div.carousalout.act").slideDown("normal");
	
            $(this).siblings("h2").children("a").removeClass("act");
		    $(this).children("a").addClass("act");
	    }
    });
    //icr-clients

  });
