$(document).ready(function() {

        

       // ColorBox/LightBox
        $(".cb-login").colorbox({
            width:"auto", 
            inline:true, 
            href:"#inline-login"
        }); 
        
        $(".get-quote").colorbox({
            width:"600px",
            height:"auto", 
            inline:true, 
            href:"#get-quote"
        });

        $(".book-appointment").colorbox({
            width:"auto", 
            height:"auto", 
            inline:true, 
            href:"#book-appointment"
        }); 

       // $("a[rel='lbIndex']").colorbox();
        //$("a[rel='lbIndex2']").colorbox();
        
        
	
        // CYCLE 
        $('#slide-banner').cycle({
            fx: 'fade',
            speed:  600,
            timeout: 5000,
            pager: 'span.buttons'
        });

        // Accordion
        $(".faqs").accordion({ header: "h5" });

		
		// Date Picker
        //$("#datepicker").datepicker();
        
        
        $('.expandable').hide();
		// Toggle Expandable Div
		$('p.toggle a').click(function() {
            $(this).parent('p').next('div').toggle();
            return false;
		});

        

        
});
