$(document).ready(function() {
	// Buttons
	$(".btn-filmpje-1 img, .btn-filmpje-2 img, .btn-filmpje-3 img, .btn-filmpje-4 img").hover(function() {
		$(this).attr("src", "/images/btn-play-mo.png");
		if ($.browser.msie && parseInt($.browser.version) <= 6) {
			$(this).supersleight();
		}
	},
	function() {
		$(this).attr("src", "/images/btn-play.png");
		if ($.browser.msie && parseInt($.browser.version) <= 6) {
			$(this).supersleight();
		}
	});
});
