$(function() {
	// add '*' for required
	$('label.required').append('*');

	// lightbox contruction
	$.Lightbox.construct( {
		"show_linkback" : false,
		"show_helper_text" : false,
		"show_info" : true,
		"show_extended_info" : true,
		"download_link" : false,
		"text" : {
			"close" : "<img src=\"/res/images/close.gif\" alt=\"Close X\" />",
			"closeInfo" : ""
		}
	});

	// enable lightbox for JPEG files
	$('a[href$=.jpg]:has(img)').lightbox();
	$('a[href$=.jpeg]:has(img)').lightbox();

});

