/* <![CDATA[ */
$(document).ready(function() {
	$("table.content tr").not(".srb-lastrow").hover(
		function() {
			$(this).addClass("over");
		}, function() {
			$(this).removeClass("over");
		}
	);
	$(".sidebar_menu").hover(
		function() {
			$(".sidebar_menu_header h3", this).addClass("over");
			$(this).children(".sidebar_menu_content").show();
		}, function() {
			$(".sidebar_menu_header h3", this).removeClass("over");
			$(this).children(".sidebar_menu_content").hide();
		}
	);
	
});
/* ]]> */

