// JavaScript Document
$(document).ready(function() {
	if(document.all) {
		$('#mainMenu li').hover(function() {
			$(this).addClass('over');
			var overlayViewportHeight = $(this).find('ul').height()+15;
			var overlayViewportWidth = $(this).find('ul').width();
			$(this).find('.menuIE6FixIframe').css({'height':overlayViewportHeight +'px','width':overlayViewportWidth+'px'});
			return false;
		},
		function() {
			$(this).removeClass('over');
		});
	}
});
