$(document).ready(function(){ 
	$('.dropdown').each(function () {
		$(this).parent().eq(0).hoverIntent({
			timeout: 100,
			over: function (e) {
				$('.dropdown:eq(0)', this).slideDown(100, function(){
					if ($(this).attr('id') == 'slideDown') {
						if ($.browser.msie && $.browser.version.substr(0, 1) < 7) {
							$('#legalContainer').css('height', '190px');
						}
						window.scrollTo(0, 450);
					}
				});
			},
			out: function () {
				$('.dropdown:eq(0)', this).hide();
				if ($.browser.msie && $.browser.version.substr(0, 1) < 7) {
					$('#legalContainer').css('height', '32px');
				}
			}
		});
	});
	
});