/* z-index fix ie7
--------------------------------------------------------------------------------- */
$(function() {
	var zIndexNumber = 1000;
	$('div').each(function() {
		$(this).css('zIndex', zIndexNumber);
		zIndexNumber -= 10;
	});
});

/* grow link attribute
--------------------------------------------------------------------------------- */
$(function() {
	$(".opsomming li").click(function(){
	      window.location=$(this).find("a").attr("href");
	      return false;
	});
});

$(function() {
	$('.opsomming li').live('mouseenter', function() {
		$(this).addClass('hover');
	})
	$('.opsomming li').live('mouseleave', function() {
		$(this).removeClass('hover');
	});
});
