// Rounded Image Replacer
// Copyright 2009 Digital Trip Ltd. All Rights Reserved.

$(document).ready(function(){
	try {
	    $('img.rounded').each(function (i){
	        this.src='/custom/roundedimage.ashx?path='+escape(this.src);
	    });
	    $('div.rounded img').each(function (i){
	        this.src='/custom/roundedimage.ashx?path='+escape(this.src);
	    });
	} catch(err) {}
});
