﻿/*
5.12.2011
Excelleweb - Nick Sisco
Mead and Assoc;
*/
var PD='|';

/* --- START UP -----------------------------------------------------------*/
$(function(){
	//alert("HOME");
    $.ajaxSetup({
        type: "POST",
        contentType: "application/x-www-form-urlencoded",
        async: true,
        dataType: "json",
        error: function(x,textStatus,errorThrown) {
            alert('AJAX ERROR:' + x.status + " >> " + x.responseText + " >> " + errorThrown);
        }
    });	
	$('#aPayOnline').animate({top: -16},2000);
	$('#nav ul li').bind('click',function(){
		var id = $(this).attr('id');
		switch (id){
			case 'liHome':
				document.location.href = 'index.php';
			break;
			case 'liOurTeam':
				document.location.href = 'ourteam.php';
			break;
			case 'liServices':
				document.location.href = 'services.php';
			break;
			case 'liCareers':
				document.location.href = 'careers.php';
			break;
			case 'liFaqs':
				document.location.href = 'faqs.php';
			break;
			case 'liLinks':
				document.location.href = 'links.php';
			break;
			case 'liContactUs':
				document.location.href = 'contactus.php';
			break;
		}
	});
	$('#tbFrom').focus();
	$('#divConsumerFAQAccordian').accordion({autoHeight: false});
	$('#divBusinessFAQAccordian').accordion({autoHeight: false});

});	




    
    
