$(document).ready(function(){

	// Newsletter signup enhancement.
	nameVal = "Enter your full name here...";
	emailVal = "...and your email address here";

	$('.feature.newsletter li input#name')
		.focus(function () {
			if ($(this).val() == nameVal) {
				$(this).val('');
			};
		})
		.blur(function () {
			if ($(this).val() == '') {
				$(this).val(nameVal);
			};
		});

	$('.feature.newsletter li input#abtl-abtl')
		.focus(function () {
			if ($(this).val() == emailVal) {
				$(this).val('');
			};
		})
		.blur(function () {
			if ($(this).val() == '') {
				$(this).val(emailVal);
			};
		});


	var maxHeight = 0;
	$('#svGallery dl').each(function(){
		maxHeight = $(this).height() > maxHeight ? $(this).height() : maxHeight;
	}).height(maxHeight);
});
