		$(document).ready(function(){
			
			$('.footer').corner('20px bottom');
			
			$('.content form, .formconfirm, .sessionmessage').corner();
			
			$('.header .navigation').superfish({
				animation: {
					opacity: 'show',
					height: 'show'
				},
				dropShadows: false
			});
			
			$('.ssn-mask').mask('999-99-9999');
			$('.date-mask').mask('99/99/9999');
			$('.phone-mask').mask('(999) 999-9999');
			
			$('.default-value').each(function() {
			    var default_value = this.value;
			    $(this).focus(function() {
			        if(this.value == default_value) {
			            this.value = '';
			        }
			    });
			    $(this).blur(function() {
			        if(this.value == '') {
			            this.value = default_value;
			        }
			    });
			});

			$('.lightbox').colorbox({
				iframe: true, 
				width: '90%', 
				height: '90%'
			});
			
			$('.lightbox-small').colorbox({
				iframe: true, 
				width: '60%', 
				height: '60%'
			});

		});

