$(document).ready(function() {


//start -- from email ----

$(".accordion2 div.accord").hide();
$("h3.accordionh3, h3.accordionWebinar").click(function(){
$(this).next(".accordion2 div.accord").slideToggle("slow");
$(this).toggleClass("active");
});


$(".accordion2 div.accord").hide();
$("h3.accordionMore, h3.accordionWebinar").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.glowSmarter a, p.glow3 a, p.glow4 a, p.glow5 a, p.glowelearning a, p.glowelearning2 a, p.glowgo2 a, p.glowevents a, p.glowwebinars a, p.glownewsletter a, p.gloweBook a, p.glowGO a, p.glownthresholds a')
    .css({ 'backgroundPosition': '0 0' })
	.hover(
      function(){
        $(this).stop()
          .animate({
            'opacity': 0
          }, 650);
	  },
	  function(){
        $(this).stop()
          .animate({
            'opacity': 1
          }, 650);
	  }
	);
});


