 $(function() {
        $('#fade').cycle({
          fx:     'fade',         
          speed:  2800,       
          timeout: 6000,     
          pause: 1
         });   

        $("#pdtBtn img").mouseover(function(){
                $(this).fadeOut('slow',function(){
                        $(this).attr('src',$(this).attr("src1").replace('.png','-1.png')).fadeIn(10);
                });
        }).mouseout(function(){
                $(this).fadeOut('slow',function(){
                        $(this).attr('src',$(this).attr("src1")).fadeIn(10)
                });
        });	
    		 
        $("#navMenu a img").mouseover(function(){
                
                        $(this).attr('src',$(this).attr("src1").replace('.png','-1.png'));
                
        }).mouseout(function(){
               
                        $(this).attr('src',$(this).attr("src1"))
        });
 });     
