function show_pic(obj){
	$(obj).blur();
	src = $(obj).attr('rel');
	title = $(obj).attr('title');
	//html =  '<a rel="'+src+'" title="'+title+'" href="javascript:void(null)" onclick="show(this)">'
	//	   +	'<img rel="'+src+'" src="'+src+'" border="0">'
	//	   +'</a>';	
	$("#p_show img").attr('src',src);
	//$("#p_show").html(html);
	$("#pic_thub a").attr('class','');
	$(obj).attr('class','selected');
	
	$("#p_show a").attr('href',src);
}
function show(obj){
	src = $(obj).attr('rel');
	title = $(obj).attr('title');
	tb_show(title,src,null);
}

function makeSize(size) {
	
	$("div.size a.sizesel").each(function(){
		this.style.backgroundColor = "#fff";
		this.style.color="#000";
		this.style.fontWeight="normal";
	});
	document.getElementById(size).style.backgroundColor = "#3366CC";
	document.getElementById(size).style.color = "#fff";
	document.getElementById(size).style.fontWeight = "bold";
	document.getElementById("comsizeY").value= size;
}
