jQuery(function($) {
var timer;

function web(event) {
$(".on").removeClass("on");
$("#web").addClass("on");
$("#header").removeClass();
$("#header").addClass("web_design");
$("#header_text").html("<script type='text/javascript'>Cufon.replace('#header_text h3');Cufon.replace('#header_text p');Cufon.replace('#header_text .button');</script><h3>Are your customers sticking around?</h3><p>Give your web project to Computer Solutions of America; we build websites that grow businesses. When you partner with CSA you can feel confident that your business is receiving a state of the art web solution built for you and your customers.</p><div class='button'><a href='web_services.php?section=web_design'>Find out how to keep your customers coming back for more!</a></div>");
clearTimeout(timer);
timer = setTimeout(eval("repair"),"10000");
}

function repair(event) {
$(".on").removeClass("on");
$("#repair").addClass("on");
$("#header").removeClass();
$("#header").addClass("repair");
$("#header_text").html("<script type='text/javascript'>Cufon.replace('#header_text h3');Cufon.replace('#header_text p');Cufon.replace('#header_text .button');</script><h3>Need affordable computer service?</h3><p>No problem!  Stop by Computer Solutions of America today.  We are dedicated to providing the best service at an affordable price.  We are here for you no matter the size.  Whether you own a large scale business, or just in need of home service CSA is right for you. </p><div class='button'><a href='computer_services.php?section=repairs'>Start getting the most out of your technology today!</a></div>");
clearTimeout(timer);
timer = setTimeout(eval("db"),"10000");

} 

function db(event) {
$(".on").removeClass("on");
$("#db").addClass("on");
$("#header").removeClass();
$("#header").addClass("database");
$("#header_text").html("<script type='text/javascript'>Cufon.replace('#header_text h3');Cufon.replace('#header_text p');Cufon.replace('#header_text .button');</script><h3>Does your work really flow?</h3><p>Computer Solutions of America offers a number of small business database solutions that are tailored exactly to your business needs. Whether you need to set up a brand new database of your information assets, restructure or modify your existing database or just have your database managed and backed up periodically, CSA is the right fit for you. </p><div class='button'><a href='web_services.php?section=database'>Start getting the most out of your database architecture now!</a></div>");
clearTimeout(timer);
timer = setTimeout(eval("seo"),"10000");
} 


function seo(event) {
$(".on").removeClass("on");
$("#seo").addClass("on");
$("#header").removeClass();
$("#header").addClass("seo");
$("#header_text").html("<script type='text/javascript'>Cufon.replace('#header_text h3');Cufon.replace('#header_text p');Cufon.replace('#header_text .button');</script><h3>Is your website invisible?</h3><p>What good is a website that can not be found?  Let Computer Solutions of America handle the hard work. We guarantee to increase your web traffic within days.  Give CSA a try and watch your website catch more eyes! </p><div class='button'><a href='web_services.php?section=seo'>Find out how to start attracting potential customers!</a></div>");
clearTimeout(timer);
timer = setTimeout(eval("web"),"10000");
} 








function OnLoad(event)
{
clearTimeout(timer);
timer = setTimeout(eval("web"),"1");
}

$('li#web').bind('click', web);

$('li#repair').bind('click', repair);

$('li#db').bind('click', db);

$('li#seo').bind('click', seo);


OnLoad();

});
