// JavaScript Document
(function ($) {
			$(function() {
				$('#tc-tile-calculator .tooltip-mark').tooltip();
				
				$('#room_size').focus(function() {
					if ($(this).val() == $(this).attr('blink')) {
						$(this).val('');
						$(this).css('color', 'black');
					}
				})
				$('#room_size').blur(function() {
					if ($(this).val() == '') {
						$(this).val($(this).attr('blink'));
						$(this).css('color', '#999999');
					}
				});
				if ($('#room_size').val() == $('#room_size').attr('blink')) {
					$('#room_size').css('color', '#999999');
				}
			});
		})(jQuery)