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

$(document).ready(function(){
		
	$("#nag1").css("background-image", "url(img/nag_1.jpg)");	
	$.preloadImages(
	"images/rotator/rot_1.jpg",
	"images/rotator/rot_2.jpg",
	"images/rotator/rot_3.jpg",
	"images/rotator/rot_4.jpg",
	"images/rotator/rot_5.jpg",
	"images/rotator/rot_6.jpg"
	);
	
	$("ul#galeria li a").click(
		function()
		{
			$("img#preview").attr('src', $(this).attr('href'));
			return false;
		}
	);		
				
	$("ul#main_menu li a").hover(function(){
			elem = this;
			$(this).fadeTo("fast", 0.5);
			$(this).fadeTo("fast", 1);
			if ($("#rot").attr('src') != ('images/rotator/'+$(elem).attr('rel')+'.jpg'))
			{
				$("#rot").fadeTo("fast", 0.5, function ()
					{				
	  					$("#rot").attr('src', 'images/rotator/'+$(elem).attr('rel')+'.jpg');
	  				}
					
				);
			}
			$("#rot").fadeTo("fast", 1);
		});

});