jQuery(document).ready(function() {


$(function() {
                        $(".external").attr("target","_blank");
                });


jQuery(function(){

        jQuery('#logo').hover(function(){
                jQuery(this).fadeTo("slow", 0.60);
        }, function(){
                jQuery(this).fadeTo("fast", 1);
        });  });

        });
        
        
        
        
               $(function() {
                        $('ul.hover_block li').hover(function(){
                                $(this).find('img').animate({top:'40px'},{queue:false,duration:500});
                        }, function(){
                                $(this).find('img').animate({top:'0px'},{queue:false,duration:500});
                        });
                });


