jQuery.noConflict();

jQuery(document).ready(function() {
	
	if(jQuery('#col-1 p.caption').length > 0) {
		jQuery('#col-1 p.caption').each(function() {
			jQuery(this).css('width',jQuery(this).siblings('img').attr('width'));
		});
	}
	
	
});