//for Hover Animations
	$(document).ready(function(){
  // about buttons //
	$(".btn_chat_holder a").hover(function() {
	  $(this).next("em").animate({opacity: "show"}, "slow");
	}, function() {
	  $(this).next("em").animate({opacity: "hide"}, "slow");
	});
	
	$(".btn_chat_holder .contactLink a").hover(function() {
	  $(this).next("em").animate({opacity: "show"}, "slow");
	}, function() {
	  $(this).next("em").animate({opacity: "hide"}, "slow");
	});
	
	$(".btn_chat_holder2 a").hover(function() {
	  $(this).next("em").animate({opacity: "show"}, "slow");
	}, function() {
	  $(this).next("em").animate({opacity: "hide"}, "slow");
	});

});


jQuery().ready(function(){	
// applying the settings
jQuery('.accordion').Accordion({
  active: 'h3.selected',
  header: 'h3.head',
  alwaysOpen: false,
  animated: true,
  showSpeed: 400,
  hideSpeed: 800
});
jQuery('.accordion2').Accordion({
  active: 'h3.selected',
  header: 'h3.head',
  alwaysOpen: false,
  animated: true,
  showSpeed: 400,
  hideSpeed: 800
});
jQuery('.accordion3').Accordion({
  active: 'h3.selected',
  header: 'h3.head',
  alwaysOpen: false,
  animated: true,
  showSpeed: 400,
  hideSpeed: 800
});
jQuery('#xtraMenu').Accordion({
  active: 'h4.selected',
  header: 'h4.head',
  alwaysOpen: false,
  animated: true,
  showSpeed: 400,
  hideSpeed: 800
});
});	
	