
var imgarray = new Array ("wp-content/themes/etiquetags/img/imgini.png","wp-content/themes/etiquetags/img/imgblog.png","wp-content/themes/etiquetags/img/imgdemo.png","wp-content/themes/etiquetags/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: -115px; left: 110px;" width="70px" height="70px;" />');                                              
                            $('#imgblog').animate({"opacity": "toggle",  "width": "+=100px", "height": "+=100px", "top": "-=100px" , "left": "-=60px"}, "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": "+=10px",  "left": "+=10px"}, "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();      
              });  



} 

