/* rounded corners */
$(document).ready(function(){
	$("div#content-container div.template-contents img").each(function() {
		$(this).addClass('rounded-img');
	});
	/*
	$(".rounded-img").each(function() {
		$(this).wrap(function(){
			return '<span class="' + $(this).attr('class') + '" style="background:url(' + $(this).attr('src') + ') no-repeat; width: ' + $(this).width() + 'px; height: ' + $(this).height() + 'px;" />';
		});
		$(this).css("opacity","0");
	});
	*/
});
