        $(function() {
            function launch() {
                 $('#couponBox').lightbox_me({centered: true, onLoad: function() { $('#sign_up').find('input:first').focus()}});
            }
            
            $('#coupon').click(function(e) {
                $("#couponBox").lightbox_me({centered: true, onLoad: function() {
					$("#couponBox").find("input:first").focus();
				}});
				
                e.preventDefault();
            });
            
            
            $('table tr:nth-child(even)').addClass('stripe');
        });

