// JavaScript Document

$(document).ready(function(){
 //$(".globe-links img").fadeTo("slow", 0.3); // This sets the opacity of the thumbs to fade down to 30% when the page loads
 $(".globe-links li").hover(function(){
 $(this).fadeTo("slow", 0.7); // This should set the opacity to 100% on hover
 $(this).css("z-index",10);
 },function(){
 $(this).fadeTo("slow", 1.0); // This should set the opacity back to 30% on mouseout
 $(this).css("z-index",1);
 });
 });

$(document).ready(function(){
$("#social img").fadeTo("slow", 0.8);
 $("#social img").hover(function(){
 $(this).fadeTo("slow", 1.0); // This should set the opacity to 100% on hover
 },function(){
 $(this).fadeTo("slow", 0.8); // This should set the opacity back to 30% on mouseout
 });
 });
