$(document).ready(function(){

    $('#slideshow').cycle({ 
        delay:      -500, 
        speed:      2500,
        timeout:    500
    });

    $(".images-teaser a").attr("rel", "teasers");

    $("a[rel=teasers]").fancybox({
		'width'			: '400px',
		'height'		: '300px',
		'transitionIn'	: 'elastic',
		'transitionOut'	: 'elastic',
		'speedIn'		: 600, 
		'speedOut'		: 200,
		'titlePosition'	: 'over',
		'titleFormat'	: function(title, currentArray, currentIndex, currentOpts) {
			return '<span id="fancybox-title-over">Afbeelding ' + (currentIndex + 1) + ' / ' + currentArray.length + '</span>';
		}
    });

	$('a[href$=".swf"]').fancybox({
		'width'			: '800px',
		'height'		: '600px',
		'transitionIn'	: 'elastic',
		'transitionOut'	: 'elastic',
		'speedIn'		: 600, 
		'speedOut'		: 200,
		 'type'			: 'swf',
		 'swf'			: {'allowfullscreen':'true'}
	});

	$('a[href^="http://www.youtube.com/v/"]').fancybox({
		'width'			: '800px',
		'height'		: '600px',
		'transitionIn'	: 'elastic',
		'transitionOut'	: 'elastic',
		'speedIn'		: 600, 
		'speedOut'		: 200,
		 'type'			: 'swf',
		 'swf'			: {'allowfullscreen':'true'}
	});

	$('.newshome p em:first-child').each(function(i){
	  $(this).replaceWith('<span class="date">' + $(this).html() + '<\/span>');
	});
	
	$('.newshome p').jTruncate({
		 length: 280,  
		 minTrail: 0,  
		 moreText: "meer >>",  
		 lessText: "<< minder",  
		 ellipsisText: "..."
	});

	$('.twitterfeed').gFeed({  
        url: 'http://twitter.com/statuses/user_timeline/33841758.rss', 
        max: 2 
    });     

    $('.flickerfeed').gFeed({  
        url: 'http://www.facebook.com/feeds/notes.php?id\x3d294396150698\x26viewer\x3d0\x26key\x3d415f785a51\x26format\x3drss20', 
        max: 2
    });     

    if ($.browser.msie) {
        $('#topmenu ul li ul').wrapInner('<div class="gradient" />');
        $('#topmenu ul li ul').wrapInner('<div class="shadow" />');
    }

});

