/*
	IMAGE ROLLOVER FUNCTIES
*/



$(function() {
	/*
	$('.rollover').hover(function() {
		var currentImg = $(this).attr('src');
		$(this).attr('src', $(this).attr('hover'));
		$(this).attr('hover', currentImg);
	}, function() {
		var currentImg = $(this).attr('src');
		$(this).attr('src', $(this).attr('hover'));
		$(this).attr('hover', currentImg);
	});
	*/
	showRollOver('dezeweek');
});

function showRollOver(element) {
	
	if ( element == "dezeweek") {
		$("#but_dezeweek").attr({src : "images/btn_dezeweek_02.gif"});
		$("#but_archief").attr({src : "images/btn_archief_01.gif"});
	}
	else if ( element == "archief") {
		$("#but_dezeweek").attr({src : "images/btn_dezeweek_01.gif"});
		$("#but_archief").attr({src : "images/btn_archief_02.gif"});
	}
}
