// JavaScript Document

$(function() {
			$('a img').hover(
						   function() {
							   longdesc = $(this).attr('longdesc');
							   if(longdesc != "")
							   {
								   src = $(this).attr('src');
								   $(this).attr('src', longdesc);
								   $(this).attr('longdesc', src);
							   }
						   },
						   function() {
							   longdesc = $(this).attr('longdesc');
							   if(longdesc != "")
							   {
								   src = $(this).attr('src');
								   $(this).attr('src', longdesc);
								   $(this).attr('longdesc', src);
							   }
						   });
			$('#gallery a').lightBox({
									   'txtImage': 'Foto',
									   'txtOf': 'de'
									   });
			$('#mapa').lightBox();
			$('#floats').makeFloat({
											  y:"current",
											  x:"current"
											  });
		   });

jQuery.preloadImages = function()
{
  for(var i = 0; i < arguments.length ; i++)
  {
    jQuery("<img>").attr("src", arguments[i]);
  }
}
