	(function ($){
		$(document).ready(function(){	
				var browserName = navigator.appName; 
				var browserVersion = parseInt(navigator.appVersion);	
			$('.scrollTableContainer').each(function (){
			if (browserName == "Netscape") { 
					var t = $(this).find('tbody');
					var t_height = t.height();
					var s_height = $(this).find('thead').height();
					if (t_height > 249 ){
						$(this).css("height","330px");
						t.css("height","275px");
					}else{
						$(this).css("height",t_height+s_height+20);
						t.css("height",t+"px");
					}
			}else { 
					var t = $(this).find('tbody');
					var t_height = t.height();
					var s_height = $(this).find('thead').height();
				if (t_height > 249 ){
					$(this).css("height","330px");
	
					}else{
					$(this).css("height",t_height+s_height+20);
					}
				}
			})
		})
	})(jQuery)
