// JavaScript Document

var r=1;
function mytimer(){

$(document).ready(function(){
 
   //$(this).hide('4000');
  
   $('#myimg').fadeIn(4000,function (){
  // r = Math.ceil(Math.random()*5);

                  $(this).fadeOut(4000);				  
				   });
   
    
    
   $('#myimg').fadeOut(4000,function (){
    if(r>=9){   r = 1;  } else {   r =r+1;   }     $('#myimg').attr({ src: "image/gallery-image-"+r+".jpg"});  
	 $(this).fadeIn(4000);	
				   });


  // $(this).show('slow');
   //alert($(this).css);
   });
  
}

 
$(document).ready(function(){
          $(this).everyTime(4000,function(i) {
					//$(this).html(i);
					mytimer();
				});

});

