$(function(){

	$('ul#subnav.dropdown>li').hover(function(){
		$(this).find('.dropdown-box').show();
	},function(){
		$(this).find('.dropdown-box').hide();
	});

	$('.ad-container').each(function(a,b){

    swfobject.embedSWF("/swf/n.swf", $(b).find('div').attr('id'), "300", "75", "8.0.0","expressInstall.swf");
  });

	$('.lightbox').each(function(a,b){
		var c = $(this);
		var link = c.find('img').attr('src');


		var imageName = link.substr(link.lastIndexOf('/')+1);
		c.attr('href','http://farm1.static.vv-wke.nl/images/'+imageName)
	});

	$('.lightbox').lightBox({fixedNavigation:false});

	$('a[rel~="external"]').click(function(){window.open($(this).attr('href'));return false;});

});

function nextMatch(){
	var idTabs = $('#next-match a');

	var first = false;
	var current = false;
	var next = false;
	idTabs.each(function(a,b){

		if(!first)											first = b;
		if(current && !next)						next = b;
		if($(b).hasClass('selected'))		current = b;

	});

	$(idTabs).removeClass('selected');
	$('.next-match').hide();

	if(next)					var showThis = $(next).addClass('selected').attr('href').substr(1);
	else if(first)		var showThis = $(first).addClass('selected').attr('href').substr(1);


	$('#'+showThis).fadeIn();
	return false;
}