jQuery.preloadImages = function()
{
	for(var i = 0; i<arguments.length; i++)
	{
		jQuery("<img>").attr("src", arguments[i]);
	}
}
$.preloadImages("img/top_strona_glowna_on.png", "img/top_kontakt_on.png", "img/menu_btn_on.png");

jQuery(document).ready(function()
{
    jQuery("div.menu").hover(
      function () {
        jQuery(this).find("img.btn").attr("src","img/menu_btn_on.png");
      },
      function () {
        jQuery(this).find("img.btn").attr("src","img/menu_btn_off.png");
      }
    );

    jQuery("img.menu_top").hover(
      function () {
        jQuery(this).attr("src",jQuery(this).attr("src").replace('_off','_on'));
      },
      function () {
        jQuery(this).attr("src",jQuery(this).attr("src").replace('_on','_off'));
      }
    );
});