jQuery(document).ready(function(){
  // Main menus
	jQuery(".megamenu").megamenu({ 'activate_action':'mouseover' });
  
  $('.toplevel').mouseenter(function() {
  	$(this).animate({backgroundColor: '#77ba43'}, 'fast');
  }).mouseleave(function() {
  	$(this).animate({backgroundColor: '#eef0f0'}, 'fast');
  });
  
  
  
  // Teaser icon scripts
  $('.xlinktease').mouseenter(function () {
  	$(this).children('.xlinkteaseout').stop().fadeTo('fast', 0);
  	$(this).children('.xlinkteaseover').stop().fadeTo('fast', 1);
  });
  $('.xlinktease').mouseleave(function () {
  	$(this).children('.xlinkteaseout').stop().fadeTo('fast', 1);
  	$(this).children('.xlinkteaseover').stop().fadeTo('fast', 0);
  });
  
  
  
  // Language fancybox
	$("a#changelangtrigger").fancybox({
		'hideOnContentClick': true,
		'titlePosition': 'inside'
	});
});

