/***********************
*  Site Specific JS   *
************************/

//Javascripts
$(document).ready(function(){
    $.favicon('http://cdn.myld.com.au/2/1029/body-corp-services-whitsundays_e4a549be13.png');

    menu.contactDetails({

        phone: '0749464905', //optional, can have multiple values[array]
        mobile: '0419757756', //optional, can have multiple values[array]
        email: 'bcs@whitsunday.net.au', //optional, can have multiple values[array]
        address: 'Suite 13, 121 Business Centre, 121 Shute Harbour Road, Cannonvale Qld 4802', //optional, single value
        hours: [['Mon to Fri','9:00am - 5:00pm']] //optional

    });

    //VIEW SECTION 1
    $('#view_section_1').insertBefore('.footer');

    //VIEW ERROR DIV
    $('#error').insertBefore('.footer');

    // Footer Map
    function footermap() {
      var myLatlng = new google.maps.LatLng(-20.27775, 148.69098);
      var image = 'http://cdn.myld.com.au/2/1029/body-corp-services-whitsundays_b2bfd98936.png';
      var mapOptions = {
        scrollwheel: false,
        zoom: 13,
        center: myLatlng,
        mapTypeId: google.maps.MapTypeId.ROADMAP
      }

      if ($('#footer-map').length > 0) {
          var map = new google.maps.Map(document.getElementById('footer-map'), mapOptions);

          var marker = new google.maps.Marker({
              position: myLatlng,
              map: map,
              icon: image
          });

          google.maps.event.addDomListener(window, 'resize', function() {
                map.setCenter(myLatlng);
          });
          google.maps.event.addDomListener(window, 'orientationchange', function() {
                map.setCenter(myLatlng);
          });
        }
    }

    $(window).load(function(){
        footermap();
    });



    if ( $("body#home").is("*") ) {
        // Slider
        $("#intro-wrap").backstretch([
            "http://cdn.myld.com.au/2/1029/body-corp-services-whitsundays_9e7413d05a.jpg",
            "http://cdn.myld.com.au/2/1029/body-corp-services-whitsundays_8b5a043b26.jpg",
            "http://cdn.myld.com.au/2/1029/body-corp-services-whitsundays_2ae639e396.jpg",
            "http://cdn.myld.com.au/2/1029/body-corp-services-whitsundays_0761a0bae7.jpg",
            "http://cdn.myld.com.au/2/1029/body-corp-services-whitsundays_0a57b046df.jpg"
        ], {duration: 3000, fade: 750, random: true});
    } else {
        // Page Title
        $("#page-title").backstretch([
            "http://cdn.myld.com.au/2/1029/body-corp-services-whitsundays_9e7413d05a.jpg",
            "http://cdn.myld.com.au/2/1029/body-corp-services-whitsundays_8b5a043b26.jpg",
            "http://cdn.myld.com.au/2/1029/body-corp-services-whitsundays_2ae639e396.jpg",
            "http://cdn.myld.com.au/2/1029/body-corp-services-whitsundays_0761a0bae7.jpg",
            "http://cdn.myld.com.au/2/1029/body-corp-services-whitsundays_0a57b046df.jpg"
        ], {duration: 3000, fade: 750, random: true});

    }
    
    
    if ( $("body#strata-management").is("*") ) {

        // Javascript to enable link to tab
        var url = document.location.toString();
        if (url.match('#')) {
            $('#tabber .tabs a[href=#'+url.split('#')[1]+']').tab('show') ;
        }

        // Change hash for page-reload
        $('#tabber .tabs a').on('shown.bs.tab', function (e) {
            window.location.hash = e.target.hash;
        })

        window.scrollTo(0, 0);

        $('#content-tabs li:first-child a').click(function(){
            $('#tabber .tabs li').removeClass('active');
            $('#tabber .tabs li:first-child').addClass('active');
        });
        $('#content-tabs li:nth-child(2) a').click(function(){
            $('#tabber .tabs li').removeClass('active');
            $('#tabber .tabs li:nth-child(2)').addClass('active');
        });
        $('#content-tabs li:nth-child(3) a').click(function(){
            $('#tabber .tabs li').removeClass('active');
            $('#tabber .tabs li:nth-child(3)').addClass('active');
        });
        $('#content-tabs li:last-child a').click(function(){
            $('#tabber .tabs li').removeClass('active');
            $('#tabber .tabs li:last-child').addClass('active');
        });


    }



    // Contact Us
    if ( $("body#contact-us").is("*") ) {

        //Contact Map
        function contactmap() {
          var myLatlng = new google.maps.LatLng(-20.27775, 148.69098);
          var image = 'http://cdn.myld.com.au/2/1029/body-corp-services-whitsundays_b2bfd98936.png';
          var mapOptions = {
            scrollwheel: false,
            zoom: 13,
            center: myLatlng,
            mapTypeId: google.maps.MapTypeId.ROADMAP
          }

          if ($('#contact-map').length > 0) {
              var map = new google.maps.Map(document.getElementById('contact-map'), mapOptions);

              var marker = new google.maps.Marker({
                  position: myLatlng,
                  map: map,
                  icon: image
              });

              google.maps.event.addDomListener(window, 'resize', function() {
                    map.setCenter(myLatlng);
              });
              google.maps.event.addDomListener(window, 'orientationchange', function() {
                    map.setCenter(myLatlng);
              });
            }
        }

        $(window).load(function(){
            contactmap();
        });

        // Contact Form
        $('#contact_form').smartCaptcha({
            validateText: ["name","phone","message"],
            //validateEmail: ["email"],
            redirectLink: null,
            validateStyle: "default"
        });

        // Remove page-title
        $('#page-title').remove();

        // Remove Footer Map
        $('#footer-map').css('display','none');


    }


});
