/**
 * EZ Gallery
 * Gallery List
 *
 * (c) EZdesign.de
 *
 * Author:   Timo Besenreuther
 * Created:  2010-01-25
 * Modified: 2010-01-25
 */


$(document).ready(function() {
	$('#EzGalleryList > .EzGalleryListItem').hover(function() {
		$(this).addClass('Hover');
	}, function() {
		$(this).removeClass('Hover');
	}).click(function() {
		window.location.href=$(this).find('a:first').attr('href');
	}).css('cursor', 'pointer');
});
