//set to fix all png images
var IE7_PNG_SUFFIX = ".png";

$(document).ready(function() {
	var selected = $('#menu a[href='+location.pathname+']');
	if(selected){
		$(selected).css({'text-decoration':'underline'});
	}
	
	$('#logo').click(function(){
		$(location).attr('href','http://www.lichtopverlies.nl/');
	});
	
	$('a.popclick').click(function(){
		$(this).hide().next().show();
		return false;
	});
	
	$('.hoverlink').hover(function(){
		$(this).stop().next().show();
		return false;
	},
	function(){
		$(this).next().fadeOut(200);
		return false;
	}
	);
	
	
	$('.team a.button').click(function(){
		var content = $(this).parent().html();
		$('#team-details').html(content);
	});
	
	
	
	if(location.pathname=="/bestel/gegevens/drie-modules")
	{
		if(location.href.split('#voucher=')[1])
		{
			$('input[name=voucher]').attr('value',location.href.split('#voucher=')[1]);
		}
	}
});
