/******************************************************************************
 * product.js creates the pop-up definitions. jQuery and Thickbox frameworks
 * are required. Script locates all anchors linking to definitions and adds 
 * Thickbox parameters and class.
 * Author: Neal Krouse, Browning & Browning, Inc. (neal@jbrownig.biz)
 ******************************************************************************/

$(document).ready(function() {
	/* Iterate through anchors adding Thickbox parameters. */
	$("#primaryContent p a, .table a").each(function() {
		$this = $(this);
		$this[0].href = $this[0].href + "?height=300&width=500";
		$this.addClass("thickbox");
	});
});