$(document).ready(function(){
			
	$('#sponsoren').jcarousel({
					auto: 4,
					scroll: 1,
					wrap: 'circular'
	});
		
	$('#menu a').bind('mouseover', function(){
		$(this).animate({
			color : '#CA2522',
			borderBottomColor : '#CA2522'			
		}, 200);	});
	$('#menu a').bind('mouseout', function(){
		$(this).animate({
			color : 'white',
			borderBottomColor : 'white'
		}, 200);	});
		
	

	if ($.browser.msie == true && $.browser.version == '6.0' ) {
		$(document).pngFix();
		$('body').prepend('<div id="ie6warn">Deze website wordt niet geheel ondersteund onder Internet Explorer 6. Deze website zal mogelijk minder goed werken.</div>');
		$('#ie6warn').show();	
	} else {
		$('#hilite img').effect('shake', { 
			distance: 5,
			times: 2,
			duration: 140
		});
	}
		
});

