$(function() {

    $('#box_content').after('<div id="box_nav" class="box_nav">').cycle({
        fx: 'fade',
        speed: '1000',
        timeout: 10000,
        pager: '#box_nav'
    });

    $('#single_big a').attr("rel", "item_image");
    $('#single_thumb a').attr("rel", "item_image");

    $("a[rel=item_image]").fancybox({
        'transitionIn': 'fade',
        'transitionOut': 'none',
        'titlePosition': 'over',
        'titleFormat': function(title, currentArray, currentIndex, currentOpts) {
            return '<span id="fancybox-title-over">' + (currentIndex + 1) + ' / ' + currentArray.length + (title.length ? ' &nbsp; ' + title : '') + '</span>';
        }
    });

    // Contact Form
    $('#contactform').submit(function() {

        var action = $(this).attr('action');

        $('#contactform #submit').attr('disabled', 'disabled').after('<img src="http://designbylinav2.dev/wp-content/designbylina/images/ajax-loader.gif" class="loader" />');

        $("#message").slideUp(500, function() {
            $('#message').hide();

            $.post(action, {
                name: $('#name').val(),
                email: $('#email').val(),
                phone: $('#phone').val(),
                subject: $('#subject').val(),
                comments: $('#comments').val(),
                verify: $('#verify').val()
            }, function(data) {
                document.getElementById('message').innerHTML = data;
                $('#message').slideDown('slow');
                $('#contactform img.loader').fadeOut('fast', function() {
                    $(this).remove()
                });
                $('#contactform #submit').attr('disabled', '');
                if (data.match('success') != null) $('#contactform').slideUp('slow');

            });

        });

        return false;

    });

});

