1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
|
<%@ Page Language="C#" MasterPageFile="~/Main.master" AutoEventWireup="true"
CodeFile="Default.aspx.cs" Inherits="_Default" Title="Home - Groovy bits" %>
<asp:Content ContentPlaceHolderID="content" runat="Server">
<div id="inviteContact">
<strong>Consulting Services</strong>
<br />
<br />
<a href="ContactUs.aspx">Contact us</a> so we can help you build an amazing web site
</div>
<div class="summary">
<div id="what" class="summary-section">
<asp:Panel id="whatMaster" CssClass="master" runat="server">
<h2>► What we do</h2>
<h3>Create / Improve / Evaluate<br />
Websites</h3>
</asp:Panel>
<div class="detail-container">
<asp:Panel id="whatDetail" CssClass="detail" runat="server">
<ul>
<li>Build, configure and deploy web sites. Turn comps into HTML & CSS. Add databases
and services to static sites.</li>
<li>Make existing web sites better by injecting new, faster, more maintainable technology.</li>
<li>Trim downstream implementation and maintenance costs by helping you make good technology
choices today.</li>
</ul>
</asp:Panel>
</div>
<ajaxToolkit:RoundedCornersExtender ID="rce1" runat="server" TargetControlID="whatDetail" Radius="10" Color="#FFFFFF" />
<ajaxToolkit:HoverMenuExtender ID="hme1" runat="Server" TargetControlID="whatMaster" HoverCssClass="masterHovered"
PopupControlID="whatDetail" PopupPosition="Right" OffsetX="-10" OffsetY="0" PopDelay="50" />
</div>
<div id="who" class="summary-section">
<asp:Panel id="whoMaster" CssClass="master" runat="server">
<h2>► Clients</h2>
<h3>Technology Evangelists<br />
Web Designers<br />
Business Owners</h3>
</asp:Panel>
<div class="detail-container">
<asp:Panel id="whoDetail" CssClass="detail" runat="server">
<ul>
<li>Microsoft Corp trusts Groovy bits with some of its most valuable and visited online properties, including
the pages that present
<a href="http://www.microsoft.com/web" title="Microsoft's Web strategy site" target="_blank">Microsoft's entire Web strategy and product offering</a>.
Groovy bits takes the lead in architecture and development of this site. Previous assignments include
Microsoft's sites for
<a href="http://www.microsoft.com/silverlight" title="Microsoft's Silverlight technology site" target="_blank">Silverlight</a>,
<a href="http://www.microsoft.com/expression" title="Microsoft's Expression Web Design/Development product line site" target="_blank">Expression</a> and
<a href="http://www.microsoft.com/design" title="Microsoft's site for designers" target="_blank">Design</a>.</li>
<li>When a bank selects a Web development firm it demonstrates an extraordinary level of trust. Millions of dollars
and their entire customer base are at stake. So Groovy bits is proud to have been chosen to build and maintain the site for
<a href="http://www.montecito.com" title="Montecito Bank and Trust" target="_blank">Montecito Bank & Trust</a>.</li>
<li>Groovy bits believes in giving back to the community. So we are committed to devoting a portion of our energies to
<em>pro bono</em> work for especially worthy non-profits like
<a href="http://dvsolutions.org" title="Santa Barbara county's shelters and protective services for victims of domestic violence" target="_blank">Domestic Violence Solutions for Santa Barbara County</a>.</li>
</ul>
</asp:Panel>
</div>
<ajaxToolkit:RoundedCornersExtender ID="rce2" runat="server" TargetControlID="whoDetail" Radius="10" Color="#FFFFFF" />
<ajaxToolkit:HoverMenuExtender ID="hme2" runat="Server" TargetControlID="whoMaster" HoverCssClass="masterHovered"
PopupControlID="whoDetail" PopupPosition="Right" OffsetX="-10" OffsetY="-30" PopDelay="50" />
</div>
<div id="why" class="summary-section">
<asp:Panel id="whyMaster" CssClass="master" runat="server">
<h2>► Qualifications</h2>
<h3>Experience<br />
Connections<br />
Knowledge<br />
Creativity</h3>
</asp:Panel>
<div class="detail-container">
<asp:Panel id="whyDetail" CssClass="detail" runat="server">
<ul>
<li>
Heidi and Russ have been building <a href="portfolio.aspx">dynamic web sites</a> since 1995. Together,
their web site and software development experience spans 50 years.
</li>
<li>
Russ helped develop
<a href="http://www.adobe.com/products/dreamweaver/productinfo/features/" target="_blank">Adobe's Dreamweaver</a>
and was a
<a href="http://msdn.microsoft.com/asp.net/learning/default.aspx" target="_blank">Program Manager</a>
on Microsoft's ASP.NET team. He continues to assist Microsoft today with the development of several of
their web properties including
<a href="http://msdn.microsoft.com/web" target="_blank" title="microsoft.com/web">microsoft.com/web</a> and
<a href="http://msdn.microsoft.com/silverlight" target="_blank" title="microsoft.com/silverlight">microsoft.com/silverlight</a>.
</li>
<li>
Heidi concentrates on small/medium businesses and non-profits, where she frequently donates her time.
</li>
</ul>
</asp:Panel>
</div>
<ajaxToolkit:RoundedCornersExtender ID="rce3" runat="server" TargetControlID="whyDetail" Radius="10" Color="#FFFFFF" />
<ajaxToolkit:HoverMenuExtender ID="hme3" runat="Server" TargetControlID="whyMaster" HoverCssClass="masterHovered"
PopupControlID="whyDetail" PopupPosition="Right" OffsetX="-10" OffsetY="-50" PopDelay="50" />
</div>
</div>
</asp:Content>
|