/*
 
Nice rollover effects using JQuery for the email, telephone and Skype buttons
(c) Webopius Ltd 2008

*/
                     
   $(document).ready(function(){

	  /* Email icon hover effect */
	  $('a#email').hover(function(){
   		$('a#contactus').hide();
   		$('a#phone').hide();
   		$('a#skype').hide();
		$('a#email .info').css('visibility','visible');
 	  }, function() { 
	    $('a#email .info').css('visibility','hidden');
	    $('a#skype').fadeIn("slow");
	    $('a#phone').fadeIn("slow");
	    $('a#contactus').show();
	  }); 
	  
	  /* Phone icon hover effect */
	  $('a#phone').hover(function(){
   		$('a#contactus').hide();
   		$('a#email').hide();
   		$('a#skype').hide();
		$('#phone .info').css('visibility','visible');
 	  }, function() { 
	    $('#phone .info').css('visibility','hidden');
	    $('a#skype').fadeIn("slow");
	    $('a#email').fadeIn("slow");
	    $('a#contactus').show();
	  }); 
	   
      /* Skype icon hover effect */
      $('a#skype').hover(function(){
   		$('a#contactus').hide();
   		$('a#email').hide();
   		$('a#phone').hide();
		$('#skype .info').css('visibility','visible');
 	  }, function() { 
  	    $('#skype .info').css('visibility','hidden');
	    $('a#phone').fadeIn("slow");
	    $('a#email').fadeIn("slow");
	    $('a#contactus').show();
	  });  
   });                                     

