
var tb_pathToImage = "/images/loadingAnimation.gif";

$(document).ready(function() {
	tb_init('a.thickbox');//pass where to apply thickbox
	imgLoader = new Image();// preload image
	imgLoader.src = tb_pathToImage;

	//curvy corners
	$('.box_cornerRounds').css("margin", "7px 0 23px 0");
	$('.box_cornerRounds').corner({
		tl: false,
		tr: { radius: 7 },
		bl: { radius: 7 },
		br: false,
		antiAlias: true,
		autoPad: true,
		validTags: ["div"]
	});
});

