Image Error handler
by Kenneth Luplau-Brøgger
HTML
<div class="shared_product" style="text-align:center;"><a href="http://www.spreadshirt.dk/lav-din-egen-t-shirt-C59/product/106296006/view/1/sb/e"><img src="http://image.spreadshirt.net/image-server/v1/products/106296006/views/1,width=250,height=250.png" width="250" height="250" /></a></div>
JavaScript
$("img").bind("mouseenter mouseleave", function(e) {
if (!$(this).data("url")) {
var elm = $(this)[0];
$.data(elm, "url", {
url: $(this).attr("src").split("/1,"),
on: "/1,",
off: "/2,"
});
}
$(this).attr("src", $(this).data("url").url[0] + (e.type == "mouseenter" ? $(this).data("url").off : $(this).data("url").on) + $(this).data("url").url[1]);
});