

	/*ROUNDED CORNERS*/
	
	$(document).ready(function(){

	  $(".rounded_corner, .rounded-img, .rounded-img2").load(function() {
		$(this).wrap(function(){
		  return '<span class="' + $(this).attr('class') + '" style="background:url(' + $(this).attr('src') + ') no-repeat center center; width: ' + $(this).width() + 'px; height: ' + $(this).height() + 'px;" />';
		});
		$(this).css("opacity","0");
	  });
	
	});
	
	
	

	


