jQuery.preloadImages = function()
{
for(var i = 0; i<arguments.length; i++)
jQuery("<img>").attr("src", arguments[i]);
}
/*jQuery.preloadImages("blok3ao.png", "blok3a.png", "blok4ao.png", "blok4a.png", "blok5ao.png", "blok5a.png",
"blok6ao.png", "blok6a.png",
"blok9ao.png", "blok9a.png",
"blok8ao.png", "blok8a.png",
"blok7ao.png", "blok7a.png");  */
jQuery(document).ready(function(){
jQuery("#iconbar li b").hover(
function(){
var _link = jQuery(this).children("a");
/*var iconName = _link.children("img").attr("src");
var origen = iconName.split(".png")[0]; 
jQuery(this).children("img").attr({src: "" + origen + "o.png"});*/ 
jQuery(this).css("cursor", "pointer");
var _h = jQuery(this).children("span").height();
_h = _h + 40;
jQuery(this).animate({ height: _h }, {queue:false, duration:"normal"} );
//jQuery(this).animate({ height: "130px" }, {queue:false, duration:"normal"} );
// jQuery(this).children("span").animate({opacity: "show"}, "fast");
},
function(){
var _link = jQuery(this).children("a");
var iconName = _link.children("img").attr("src");
/*var origen = iconName.split("o.")[0];     */
/*jQuery(this).children("img").attr({src: "" + origen + ".png"}); */
jQuery(this).animate({ height: "20px" }, {queue:false, duration:"normal"} );
// jQuery(this).children("span").animate({opacity: "hide"}, "fast");
});

}); 
