$(document).ready(function() {


//start -- from email ----

$(".accordion2 div.accord").hide();
$("h3.accordionh3").click(function(){
$(this).next(".accordion2 div.accord").slideToggle("slow");
$(this).toggleClass("active");
});


$("a.showall").click(function(){
$(".accord").toggle("400");
return false;
});
});

$(document).ready(function(){
  $('p.glow a, p.glow2 a, p.glowConsultancyTraining a ')
    .css({ 'backgroundPosition': '0 0' })
	.hover(
      function(){
        $(this).stop()
          .animate({
            'opacity': 0
          }, 650);
	  },
	  function(){
        $(this).stop()
          .animate({
            'opacity': 1
          }, 650);
	  }
	);
});


