$(document).ready(function(){
	$(".thickbox img").before('<span class="zoom"></span>');
	$("a.thickbox img").css ("border", '1px solid #888888');
	$("a.thickbox").hover(function(){
		$(this).find('img').css('border', '1px solid #000000');
	},
	function (){
		$(this).find('img').css('border', '1px solid #888888');
	}
	);

});
