$(function() {
	$("a.tdhover").click(function() {
		update_dimensions();
		var self = this;
		tb_show(null, $(self).attr('href')+"?width="+thickWidth+"&height="+thickHeight, null);
		return false;		
	});
});

tb_callback = function() {
	attach_site_actions();
	attach_carrying_positions_view_actions();
}

function attach_carrying_positions_view_actions() {
	$("img.thumb").mouseover(function() {
		$("img.product").attr('src', $(this).attr('rel'));
	});
}