jQuery(document).ready(function() {
	// ---[ navigation]---
	jQuery('#Table_01').find('img').hover(
		function () {
			var src = jQuery(this).attr('src');
			var new_src = src.replace('menu_off', 'menu_on');
			 jQuery(this).attr('src', new_src);
		},
		function () {
			if (!jQuery(this).hasClass('current')) {
				var src = jQuery(this).attr('src');
				var new_src = src.replace('menu_on', 'menu_off');
				jQuery(this).attr('src', new_src);
			}
		}
	);
	
	// ---[ login form ]---
	jQuery('#btnLogin').click(function () {
		document.frmLogin.submit();
	});
	
	jQuery('#btnRegister').click(function () {
		window.location = 'register.html';
	});
});