I been analyzing your site and i discover a possible reason about why its getting slow...
With the Yslow Help ( a nice Firefox tool) i saw that you had a big big image as the showcase background (Rotator) it image was taking almost 5 seconds to load , wow it was big (303 KB) so i download it and compress it for you, so now the image have a the same image quality but is just 19.5 KB, the secret was change it from PNG to JPG, below you will find both images, so that you need to do know is change the reference from PNG to JPG at the code below.
See at css/blue.css.bc-blue #showcase {
background: #0D4E76 url(../images/blue/showcase-bg.png) 0 0 no-repeat;
}
Change to.bc-blue #showcase {
background: #0D4E76 url(../images/blue/showcase-bg.jpg) 0 0 no-repeat;
}
It change for sure will help you with performance site, if you need more help let me know and i will glad to help you.
Regards
Mariela