	$(function() {
			$(document).pngFix(); 
			$("#container").corner("bottom 14px");
			$("#inner_content").corner("8px");
			$(".box_blank .module_content").corner("8px");
			$('div.box_red').wrap('<div class="box_outer"></div>');
			$('div.box_grey').wrap('<div class="box_outer_grey"></div>');
			$('div.box_outer').wrap('<div class="box_inner"></div>');
			$(".round").corner("5px").parent().corner("6px");
			$("#srb table.content tr").mouseover(function() {
				if(!$(this).is(":last-child")) {
					$(this).addClass('over');
					$(this).children("td").addClass('over');
					$(this).children("td").children("a").addClass('over');
				}
			});
			$("#srb table.content tr").mouseout(function() {
				if(!$(this).is(":last-child")) {
					$(this).children("td").children("a").removeClass('over');
					$(this).children("td").removeClass('over');
					$(this).removeClass('over');
				}
			});
		});