$(document).ready(function() {
	var img = ""; 
	$("#content-main img").each(
		function()
		{
			img = $(this);
			$(this).parent().replaceWith('<div class="ydsf"><div class="inner"><img src="' + 
										 $(this).attr('src') + '" alt="' + 
										 $(this).attr('alt') + '"/></div></div>');
			/*$(this).remove($(this).parent( ) );	*/
			/* need to strip parent and then add divs for ydsf */
		}
	);
});


