$(document).ready(function(){
	thickbox_login('a.loginLink', "Processing...");//pass where to apply thickbox
	imgLoader = new Image();// preload image
	imgLoader.src = tb_pathToImage;
});

	
function thickbox_login(domChunk, exitLoaderCaption){
	$(domChunk).click(function(){
		var newHref = "/loginJavascript.htm?height=293&width=310&modal=true&javascript=true";
		if($.browser.msie && $.browser.version < 7){
			newHref = "/loginJavascript.htm?height=290&width=312&modal=true&javascript=true";
		}
		var g = this.rel || false;
		tb_show("Confetti Login",newHref,g, exitLoaderCaption);
		this.blur();
		return false;
	});
}
