/* * Thickbox 2.1 - One Box To Rule Them All. * By Cody Lindley (http://www.codylindley.com) * Copyright (c) 2006 cody lindley * Licensed under the MIT License: * http://www.opensource.org/licenses/mit-license.php * Thickbox is built on top of the very light weight jQuery library. */ //on page load call TB_init $(document).ready(t_init); function t_init(){ $("a").click(function(){ t_send(this.href); }); } function t_send(curBid){ var tmpImg = new Image(); tmpImg.src = baseDir+'t.php?sk='+sk+'&pid='+pid+'&bid='+curBid+'&hr='+hr; }