$(document).ready(function() {
	// hide modal wheel popups
	$("div#modal-wheel li div").hide();

	$("div#modal-wheel li a").hover(
		function() {
			$(this).parent().css({zIndex:"10"});
			$(this).next().show(100);
		},
		function() {
			$(this).parent().css({zIndex:"1"});
			$(this).next().hide(100);
		});
});
