// JavaScript Document

 $(document).ready(function(){

$('a.ttb').cluetip({
				   splitTitle: '|',
				   dropShadow: false,
				   cluetipClass: 'rounded'
				   });

$('a.ttbil').cluetip({
				   dropShadow: false,
				   cluetipClass: 'rounded'
				   });

$('#slideshow2').cycle({ 
    pause:  1,
	timeout: 12000,
	speed: 2000
	});	

$('li:has(a)').click(function(event){
//			alert("hello world");
//			return false;
			});

$(".na").hoverIntent(
      function () {
        $("#besked").fadeIn(200); //moving over
      }, 
      function () {
        $("#besked").fadeOut(50); //moving out
      }
    );

});


