var idcont;

$(function(){

	$('#hoofdmenu > div').hover(function() {
		if (!($(this).attr('rel') == actievehoofdmenu))
		{
		$(this).css({
		'background-color'	:	'#'+$(this).attr('rel'),
		'filter'			:	'alpha(opacity=100)',
		'-moz-opacity'		:	'1.00',
		'-khtml-opacity'	:	'1.00',
		'opacity'			:	'1.00' });
		}
	}, function(){
		if (!($(this).attr('rel') == actievehoofdmenu))
		{
		$(this).css({
		'background-color'	:	'#000',
		'filter'			:	'alpha(opacity=60)',
		'-moz-opacity'		:	'0.60',
		'-khtml-opacity'	:	'0.60',
		'opacity'			:	'0.60'});
		}
	});

	$('.headerimg').fadeIn(1500);

	$('#'+actievehoofdmenu).css({
	'background-color'		:	'#fff',
	'height'				:	'33px',
	'filter'				:	'alpha(opacity=100)',
	'-moz-opacity'			:	'1.00',
	'-khtml-opacity'		:	'1.00',
	'opacity'				:	'1.00',
	'background-image'		:	'url(\'/images/menu_'+actievehoofdmenu+'.gif\')'
	});

	$('#'+actievehoofdmenu).animate({ 'background-position' : '-200px 0px'}, 800);

});

function gotomenulink(link) {

$('.headerimg').fadeOut(400, function(){
window.location.href = link;

});

}


