$(document).ready(function(){
	$('.simple_rollover').hover(
		function () {
			$(this).attr('src',$(this).attr('src').replace('_norm','_over'));
		},
		function () {
			$(this).attr('src',$(this).attr('src').replace('_over','_norm'));
		}
	);
	
	$("#tabs").tabs();
		
});