
var imgarray = new Array ("img/imgini.png","img/imgblog.png","img/imgdemo.png","img/imgdesc.png");

var et_img = new Array();

function cargarimagenes(){

      for(i in imgarray){
          et_img[i] = new Image();
          et_img[i].src = imgarray[i];

      }
}

cargarimagenes();

function et_effects() {

    

 				$('#ainicio').hover(
               function() {	            
                     if(!$.browser.msie){  
                              $(this).append('<img src="' +  et_img[0].src  + '" id="imgini" style="visibility:visible; opacity:0.2;  position:relative; top: -150px; left: 80px;" width="120px" height="90px;" />');                                              
                             $('#imgini').animate({"opacity": "toggle", "height": "+=50px",  "top": "-=85px"}, "2000");
                       
                     }
                     }, 
              function () {
                    $(this).find("#imgini").remove();      
              });  

             $('#ablog').hover(
	            function() {	            
                     if(!$.browser.msie){  
                            $(this).append('<img src="' +  et_img[1].src  + '" id="imgblog" style="visibility:visible; opacity:0.2; position:relative; top: -120px; left: 92px;" width="70px" height="70px;" />');                                              
                            $('#imgblog').animate({"opacity": "toggle",  "width": "+=100px", "height": "+=100px", "top": "-=80px" , "left": "-=40px"}, "2000");
                        
                     }
                     },
               function () {
                          $(this).find("#imgblog").remove();      
               
               }); 
              
               $('#ademo').hover(
               function() {	            
                     if(!$.browser.msie){  
	           
                              $(this).append('<img src="' +  et_img[2].src  + '" id="imgdemo" style="visibility:visible; opacity:0.2; position:relative; top: -137px; left: 100px;" width="120px" height="90px;" />');                                            
                   
                              $('#imgdemo').animate({"opacity": "toggle", "width": "+=100px",  "left": "+=50px"}, "2000");
                        
                 
                     }
                     },  
              function () {
                    $(this).find("#imgdemo").remove();      
              });            
              
              
               $('#adesc').hover(
               function() {	            
                     if(!$.browser.msie){  
                              $(this).append('<img src="' +  et_img[3].src  + '"id="imgdesc" style="visibility:visible; opacity:0.2;  position:relative; top: -100px; left: 80px;" width="120px" height="90px;" />');                                              
                             $('#imgdesc').animate({"opacity": "toggle", "height": "+=50px",  "top": "+=55px"}, "2000");
                       
                     }
                     }, 
              function () {
                    $(this).find("#imgdesc").remove();      
              });  



} 