$(document).ready(function() {
    //handle callback slide
    $('.call_me_back').click(function () {
        $('div#call_me_form').slideToggle();
    });
    
    //js placeholder
    var default_values = {};
    $('input, textarea').each(function () {
        var index = $(this).attr('name');
        var value = $(this).val();
        default_values[index] = value;
    });
    $('input, textarea').focus(function() {
        if ($(this).val() == default_values[$(this).attr('name')]) {
            $(this).val('');
        }
    });
    $(this).blur(function() {
        if($(this).val() == '') {
            $(this).val(this.defaultValue);
        }
    });

    //fire lightbox
    if ($('#markets')) {
        $('.gallery a').lightBox(); // ! yepnope this
    }
    
    //admin tabs
    $("#tabs").tabs(); // ! yepnope this

    //call back form submit handler
    $('#callBackForm').submit(function (e) {
        e.preventDefault();
        $(this).ajaxSubmit({ target: '#callBackResults' });
        return false;
    });
    //form click handlers
    $('#extra-Submit').click(function (e) {
        e.preventDefault();
        $('#callBackForm').submit();
        return false;
    });
    $('#alpha-submit-Submit').click(function () {
        $('#enquiryForm').submit();
    });
    
    //homepage slideshow
    $('#slideshow').innerfade({
        animationtype: 'fade',
        speed: 550,
        timeout: 5800,
        type: 'random',
        containerheight: '1em'
    });
});
