$(document).ready(function() {
	// in order to do 'feature' divs the same height
	var maxHeight =	0;
	$("div.feature").each(function(i) {
		var curHeight = $(this).height();
		if (curHeight > maxHeight) {
			maxHeight = curHeight;
		}
	});
	$("div.feature").height(maxHeight + 'px');
	
	// png fix for IE
	$(document).pngFix();
	
	// hovers for IE
	if ($.browser.msie) {
		$("#top-menu li").bind('mouseenter mouseleave', function() {
			$(this).toggleClass('hover');
		});
	}
});

