function resettab(){
    $('a.hiwlfaqs').css('background', 'url(images/faqs.png)');
    $('a.hiwlhowitworks').css('background', 'url(images/howitworks.png)');
    $('a.hiwlguarantee').css('background', 'url(images/guarantee.png)');
    $('a.hiwlprice').css('background', 'url(images/price.png)');
    $('a.hiwlspecials').css('background', 'url(images/specials.png)');
};

function changetab(divname, tabcontent, linkname, bgaddress){
    $(divname).load(tabcontent);
    $(linkname).css('background', 'url(' + bgaddress + ')');
    return false;
}




$(document).ready(function(){
    
       $('a.gslogin').click(function(){
        $('div.gsmbg p').load('loginform.html');
        $('div.gsimages').css('display', 'none');
        $('a.gslogin').css('display','none');
        $('a.gssignup').css('display','block');
        
        return false;
        });
	   
	   $('a.gssignup').click(function(){
        $('div.gsmbg p').load('signup_text.html');
        $('div.gsimages').css('display', 'block');
        $('a.gslogin').css('display','block');
        $('a.gssignup').css('display','none');
        
        return false;
        });
	   
	   
	   $('a.already_a_member').click(function(){
        $('div.signup_from_load').load('signup_text.html');
		$('div.already_a_member_content').css('display','none');
        $('a.get_started_link').css('display','block');
        $('a.already_a_member').css('display','none');
        
        return false;
        });
	   
	   $('a.get_started_link').click(function(){
        $('div.signup_from_load').css('display','none');
		$('div.already_a_member_content').css('display','block');
        $('a.get_started_link').css('display','none');
        $('a.already_a_member').css('display','block');
        
        return false;
        });
	   
	   
	   
    changetab('div.hiwparagraph', 'howitworks/specials.html', 'a.hiwlspecials', 'images/specialst.png');
    
    $('a.hiwlfaqs').click(function(){
        resettab();
        changetab('div.hiwparagraph', 'howitworks/faq.html', 'a.hiwlfaqs', 'images/faqst.png');
        return false;
    });
    
    $('a.hiwlhowitworks').click(function(){
        resettab();
        changetab('div.hiwparagraph', 'howitworks/howitworks.html', 'a.hiwlhowitworks', 'images/howitworkst.png');
        return false;
    });
    
    $('a.hiwlguarantee').click(function(){
        resettab();
        changetab('div.hiwparagraph', 'howitworks/guarantee.html', 'a.hiwlguarantee', 'images/guaranteet.png');
        return false;
    });
    $('a.hiwlprice').click(function(){
        resettab();
        changetab('div.hiwparagraph', 'howitworks/price.html', 'a.hiwlprice', 'images/pricet.png');
        return false;
    });
    $('a.hiwlspecials').click(function(){
        resettab();
        changetab('div.hiwparagraph', 'howitworks/specials.html', 'a.hiwlspecials', 'images/specialst.png');
        return false;
    });
    

    
    
    $(function(){
        $(".ltcarwrap").jCarouselLite({
			wrap: 'circular',
            btnNext: ".carnext",
            btnPrev: ".carprev",
            scroll: 1,
            visible: 3,
            auto: 5000
        
        });
    });
    

    
});





