$J = jQuery.noConflict();

$J(document).ready(function () {

    if ($J("body#satellites").length > 0) {
				
        // apply hover animation to satellite logos
        $J(".satellite").hover(
            function () {
                var position = $J(this).position();
                $J(this).children(".description").css("left",position.left+"px");
                $J(this).children(".description").css("top",position.top+"px");
                $J(this).children(".description").fadeIn("slow");
            },
            function () {$J(this).children(".description").fadeOut("fast");}
            );
		
    } // end body#clients
    
});
