$(document).ready(function() {

	$("#commentform label").hide();

	// Label Comment Form
	$("#commentform input:text").labelify({
		text: "label"
	});
	$('.ngg-gallery-thumbnail a').lightBox(); 
	$(".show").show();
	
	$("#comment").labelify();
	
	$("#submit").click(function() {
		if($("#agree").is(":checked")) {
			form.submit;
		}else{
		alert("You must agree to the terms and conditions.");
		return false;
		}
	});

	
});
