(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","348px");
					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("margin-bottom","12px");
				$(this).css("height","368px");

				}else{
				$(this).css("height",t_height+s_height+20);
				}
			}
		})
	})
})(jQuery)
