
var msd = function() {
	var
	oddList,
	evenList,
	
	handleOddMouseOver = function() {
		$(this).css("background-color", "#edf4f8");
	},
	
	handleEvenMouseOver = function() {
		$(this).css("background-color", "#f2f3f4");
	},
	
	handleEvenMouseOut = function() {
		$(this).css("background-color", "#ffffff");
	},
	
	handleOddMouseOut = function() {
		$(this).css("background-color", "#f5fafd");
	},
	
	init = function() {
		oddList = $("a.sporsmaal:odd");
		evenList = $("a.sporsmaal:even");
		
		oddList.each(handleOddMouseOut);
		
		oddList.bind("mouseover", handleOddMouseOver);
		oddList.bind("mouseout", handleOddMouseOut);
		evenList.bind("mouseover", handleEvenMouseOver);
		evenList.bind("mouseout", handleEvenMouseOut);
		
		$("#sok").bind("focus", function() { $(this).val(""); } );
		
		if($.browser.msie) {
			$('img, .list-item a').ifixpng();
		}
	}
	;
	
	return {
		init:init
	};
}();


$(document).ready(function() {
		msd.init();
});


