// JavaScript Document

function MM_goToURL() { //v3.0
  var i, args=MM_goToURL.arguments; document.MM_returnValue = false;
  for (i=0; i<(args.length-1); i+=2) eval(args[i]+".location='"+args[i+1]+"'");
}

  $(document).ready(function () {
  		$("#tekst").delay(1500).fadeIn("fast");
		$("a[rel='hipsta']").colorbox({transition:"fade",slideshow:true});
		$("a[rel='canon']").colorbox({transition:"fade",slideshow:true});
		$(".tooltips").hover(
			function() { $(this).contents("span:last-child").css({ display: "block" }); },
			function() { $(this).contents("span:last-child").css({ display: "none" }); }
		);
		$(".tooltips").mousemove(function(e) {
			var mousex = e.pageX + 10;
			var mousey = e.pageY + 5;
			$(this).contents("span:last-child").css({  top: mousey, left: mousex });
		});
	});
