$('document').ready(function(){
	
	target = $('#main .comment p a');
	target.each(function(){
		
		if( $(this).attr('href').match(/\.(jpg|jpeg|gif|png)$/i) ){
			$(this).addClass("colorbox");	
		}
		
	
	});	
		
});
