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