		$(function() {
			$('.light').lightBox({overlayOpacity: 0.83,
									txtOf: 'od',
									txtImage: 'Prikazujem sliko '
									});
			
			var clearQueue = true;
			var gotoEnd = false; 
			var clearQueue1 = true;
			var gotoEnd1 = false; 
			
			
			$(".footLeft img").fadeTo(500,0.5);
			
			$(".footLeft img").mouseover(function ()
			{
				$(this).stop(clearQueue , gotoEnd);
				$(this).fadeTo(500,1);
			});
			
			$(".footLeft img").mouseout(function ()
			{
				var r5 = Math.floor(Math.random()*4000) + 100;
				
				$(this).fadeTo(r5,0.5);
			});
		});
