$(document).ready(function() {
	
	// a img script
	$('img').each(function() {
		var parentTag = $(this).parent().get(0).tagName;
		if (parentTag == 'A') {
			$(this).parent().addClass('linkedImage');
		};
	});
	
	// calculator "validation"
	$('#calculator #area').keypress(function() {
		if ($(this).val().length > 6) $(this).val($(this).val().substr(0, 6));
	});
	$('#calculator #price').keypress(function() {
		if ($(this).val().length > 6) $(this).val($(this).val().substr(0, 6));
	});
	
});
