$(window).bind('load', function(){
						  
        $('div.scrollGallery').mouseGallerySlide({
            scrollElParent: 'ul',
            scrollEl: 'li' 
        });
	   
	   $(".scrollGallery ul li").hover(function(){
			$(this).find("a").stop().animate({right:"0"}, 'fast');
			}, function(){
			$(this).find("a").stop().animate({right:"-180"}, 'fast');
        })
	   
//	   $(".scrollGallery ul li").hover(function(){
//			$(this).find("strong").stop().animate({bottom:"0"}, 'fast');
//			}, function(){
//			$(this).find("strong").stop().animate({bottom:"-20"}, 'fast');
//      })
	   

	   
	   
	   $("dl#social-links dd img").hover(function(){
	    $(this).animate({opacity:"1"}, "fast")
	   }, function(){
	    $(this).animate({opacity:".2"}, "fast")
	   });
	   
});
