
$(document).ready(
	function() {
		$('#galeriePhotos4 li').hover(
			function () { // mouse hover
				$(this).css({cursor: 'pointer', border: '1px solid #4A7DF7'});
			}
			,
			function () { // mouse leave  
				$(this).css({cursor: 'auto', border: '1px solid #CBCBCB'});
			}
		);
		
		$('#galeriePhotos4 li').click(
			function () {
				document.location.href = 'galerie-photos-album.php?album='+$(this).attr('id').substr(7,1);
			}
		);
	}
);
