$(function(){

	// jump to top
	//$('#content').append('<p class="nav"><a href="#" class="top">Skoči gore</a></p>');
	$('.nav .top').click(function() { 
		this.blur();
		$('html').animate({scrollTop: 0}, '1000');
		return false;
	});

	// animated jump to
  $('a[href*=#]').click(function() {
		$(this).blur();
		if (location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'') && location.hostname == this.hostname) {
		  var $target = $(this.hash);
		  $target = $target.length && $target || $('[name=' + this.hash.slice(1) +']');
		  if ($target.length) {
				var targetOffset = $target.offset().top - 30;
				$('html,body').animate({scrollTop: targetOffset}, 1000);
				return false;
		  }
		}
  });

	// lightbox
$("ul.album a").lightBox();

	// PDF ikonice
	$('a').each(function() {
		if ($(this).attr('href').match(/\.pdf$/))	$(this).addClass('pdf');
	});

	// tooltipovi
	$("*[title]").tooltip({
	    //bodyHandler: function() { 
			//	return 'bla';
	    //}, 
	    track: true,
	    delay: 0,
	    showURL: false,
	    showBody: " - "
	    //opacity: 0.85
	});
		
});