$(function(){

	$('img',$("ul.boxes li a:not('.hi')"))
	.hover(
		function () {
			var image = $(this).attr('src').replace('_active','');
			$(this).attr('src',image.replace('.gif','_active.gif'));
		}, 
		function () {
			var image = $(this).attr('src').replace('_active','');
			$(this).attr('src',image);
		}
	);
});


// jQuery mediagallery (shadowbox plugin)
$(function(){
	
	if($('#newyeargreating').length >= 1){ // als a er is:
	
		var options = {
			handleOversize:			'resize',
			counterType:			'skip',//'default',//'skip',
			overlayOpacity:	   		'0.6'
			//handleUnsupported:  	'remove',
			//onFinish:				galleryElemDesc,
			//flvPlayer:				'lib/swf/mediaplayer2.swf'
			
		};
	 
		Shadowbox.init(options);
			
		Shadowbox.open({
			content:    $('#newyeargreating').attr('href'),
			player:     'img',
			title:      ''//'NPZ-NRZ wenst u een fit en sportief 2009!'
		});
		
		$('#shadowbox_container').click(function(){
			Shadowbox.close();
		});

    }
});