	
$(function(){
  
  var totalHeight, currentScroll, visibleHeight;

  
  if (document.documentElement.scrollTop)
    { currentScroll = document.documentElement.scrollTop; }
  else
    { currentScroll = document.body.scrollTop; }
  
  totalHeight = document.body.offsetHeight;
  visibleHeight = document.documentElement.clientHeight;
  

	
if (visibleHeight>600) {

$().ready(function() {
		var $scrollingDiv = $("#lijevi");
 
		$(window).scroll(function(){			
			$scrollingDiv
				.stop()
				.animate({"marginTop": ($(window).scrollTop() - 0) + "px"}, "fast" );			
		});
	});
} 
  
                });





    $(function() {
	$('a.lightbox').lightBox(); // Select all links in object with gallery ID
		$('a.lightbox2').lightBox(); // Select all links in object with gallery ID
		$('a.lightbox-onama1').lightBox(); // Select all links in object with gallery ID
		$('a.lightbox-onama2').lightBox(); // Select all links in object with gallery ID
		$('a.lightbox-onama3').lightBox(); // Select all links in object with gallery ID
		$('a.lightbox-onama4').lightBox(); // Select all links in object with gallery ID
		$('a.lightbox-onama5').lightBox(); // Select all links in object with gallery ID

    });



