$(document).ready(function(){ //Begin onLoad  

    // ---------------- Navigation Animation ---------------- //
    $('ul#nav li a[class=active]').animate({
        backgroundColor: "#7ed5a8",
        color: "#fff"
    }, 'slow');
    
    
    $('ul#nav li a[class=]').hover(function(){
        $(this).animate({
            backgroundColor: "#7ed5a8",
            color: "#fff"
        }, 'fast');
    }, function(){
        $(this).animate({
            backgroundColor: "#fff",
            color: "#000"
        }, 'fast');
    });
    
	
	// ---------------- Contact Form Animation ---------------- //
    
    $('#submitForm input').focus(function(){
        $(this).animate({
            backgroundColor: '#ade5c8'
        }, 'fast');
    });
    $('#submitForm input').blur(function(){
        $(this).animate({
            backgroundColor: '#fff'
        }, 'fast');
    });
    
    $('#submitForm textarea').focus(function(){
        $(this).animate({
            backgroundColor: '#ade5c8'
        }, 'fast');
    });
    $('#submitForm textarea').blur(function(){
        $(this).animate({
            backgroundColor: '#fff'
        }, 'fast');
    });
    
    
    /* ---------- Contact form ---------- */
    $("#submitForm").submit(function(){
        $('#output').html('<img alt="" src="layout/theme1/loading.gif" />');
        $.post('core/ajax-mail.php', {
            require: $('[name=require]').val(),
            name: $('[name=name]').val(),
            email: $('[name=email]').val(),
            telephone: $('[name=telephone]').val(),
            enquiry: $('[name=enquiry]').val(),
            message: $('[name=message]').val()
        }, function(data){
            $('#output').html(data).fadeIn();
        });
        return false;
    });
    
});
