// JavaScript Document$(function () {	$("#logo").click( function () {		window.location = 'index.php';	});		$("#login img").hover( 	function () {		$(this).attr('src', 'images/client_login_over.png');	}, 	function () {		$(this).attr('src', 'images/client_login_up.png');	});		$("#logout img").hover( 	function () {		$(this).attr('src', 'images/logout_over.png');	}, 	function () {		$(this).attr('src', 'images/logout_up.png');	});		$("#login_button").hover(	function () {		$(this).css('background', 'url(images/login_button.png) no-repeat 0 -50px');	}, 	function () {		$(this).css('background', 'url(images/login_button.png) no-repeat 0 0');	});});
