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

//Javascripts
$(document).ready(function(){ 
  $.favicon('http://cdn.myld.com.au/2/1712/cca-secondhand-pty-ltd_3130f297ad.png');
	
	menu.contactDetails({
		
		phone: '0740323205', //optional, can have multiple values[array] 
		mobile: null, //optional, can have multiple values[array]
		email: 'cca_secondhand@bigpond.com', //optional, can have multiple values[array] 
		address: '79-81 Alfred Street, Cairns, QLD 4870', //optional, single value
		hours: [['Mon-Fri','8:00am-5:30pm'],['Sat','8:00am-5:00pm'],['Sun','10:00am-4:00pm']] //optional
		
	});
    
    
    // View section_1
    $('#view_section_1').insertBefore('.footer');

    // View error div
    $('#error').insertBefore('.footer');
    
    // Feature image
    $('#slider').backstretch("http://cdn.myld.com.au/2/1712/cca-secondhand-pty-ltd_8ad596569f.jpg");
    
    // Map
    function map() {
      var myLatlng = new google.maps.LatLng(-16.92716, 145.73996);
      var image = 'http://cdn.myld.com.au/2/1712/cca-secondhand-pty-ltd_c76a1e3553.png';
      var mapOptions = {
        scrollwheel: false,
        zoom: 13,
        center: myLatlng,
        mapTypeId: google.maps.MapTypeId.ROADMAP
      }

      if ($('#map').length > 0) {
          var map = new google.maps.Map(document.getElementById('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(){
        map();
    }); 
    
    // Gallery
    if(Modernizr.touch && $(".fancybox").length > 0 )
    {
       var myPhotoSwipe = $(".fancybox").photoSwipe({ enableMouseWheel: false , enableKeyboard: false });
    }
    else
    {
    /* Apply to single image */
        $("a.fancybox").fancybox();

    /* Apply fancybox to multiple items */
        $("a.fancybox[rel='gallery_group']").fancybox({
            'transitionIn'    :    'elastic',
            'transitionOut'    :    'elastic',
            'speedIn'        :    600,
            'speedOut'        :    200
        });

    }    
    
    
    // CONTACT
    if ( $("body#contact").is("*") ) {

        // Contact Form
        $('#contact_form').smartCaptcha({
            validateText: ["name","phone","message"],
            validateEmail: ["email"],
            redirectLink: null,
            validateStyle: "default"
        });

        // Remove Slider
        $('#slider').remove();

        // Insert Map
        $('#map').insertAfter('#header');
        
    } else {
        
    }
    
    
     
}); 
