

$( document ).ready(
		function()
		{


			$( '#img-logo' ).click(
				function()
				{
					window.location.href = '/';
				}
			);

			$( '#img-logo' ).mouseover(
				function()
				{
					$(this).css( 'cursor', 'pointer' );
				}
			);

			$( '#img-logo' ).mouseout(
				function()
				{
					$(this).css( 'cursor', 'default' );
				}
			);

		}
);