		$(function() {
			$('.light').lightBox({overlayOpacity: 0.83,
									txtOf: 'od',
									txtImage: 'Prikazujem sliko '
									});
			
			var clearQueue = true;
			var gotoEnd = false; 
			var clearQueue1 = true;
			var gotoEnd1 = false; 
			
			$(".bGreen").corner("3px");
			$(".bRed").corner("3px");
			$(".bBlue").corner("3px");
			
			$(".last-images img").fadeTo(500,0.3);
			
			$(".last-images img").mouseover(function ()
			{
				$(this).stop(clearQueue , gotoEnd);
				$(this).fadeTo(500,1);
			});
			
			$(".last-images img").mouseout(function ()
			{
				var r5 = Math.floor(Math.random()*4000) + 100;
				
				$(this).fadeTo(r5,0.3);
			});
			
			$(".fist-page-left a").mouseover(function ()
			{
				var r = Math.floor(Math.random()*6) + 4;
				var s = Math.floor(Math.random()*300) + 500;
				
				$(this).stop(clearQueue1 , gotoEnd1);
				$(this).animate({marginLeft: r+"px"}, 500 );
			});	
			
			$(".fist-page-left a").mouseout(function ()
			{				
				$(this).animate({marginLeft: "0px"}, 500);
			});	

		});
