function trim ( myString )
{ return myString.replace(/^\s+/g,'').replace(/\s+$/g,'') } 

$(document).ready(function(){
	$('#content #c-spectacles img').each(function() {
		if ( $(this).parent().hasClass('title') )
			return true;
		img = $(this).clone(true);
		img.addClass('big');
		$(this).after(img);
	}).hover(function(){
		$(this).next().addClass('hover');
	},function(){
		$(this).next().removeClass('hover');
	});
});

