$(document).ready(function() {
	$(".slidereveal").hover(function() {
		var imgEl = $(".imgholder", $(this));
		imgEl.stop(true).animate({left: imgEl.parent().width()}, 300);
	}, function() {
		$(".imgholder", $(this)).stop(true).animate({left: 0}, 300);
	}).click(function() {
		window.location = $("a", $(this)).filter(":first").attr("href");
	});
});
