$(document).ready(function(){ //Check to see if the window is top if not then display button $(window).scroll(function(){ if ($(this).scrollTop() > 100) { $('.scrollToTop').fadeIn(); } else { $('.scrollToTop').fadeOut(); } }); //Click event to scroll to top $('.scrollToTop').click(function(){ $('html, body').animate({scrollTop : 0},800); return false; }); }); $('.videoplay1').on('click', function() { $(this).fadeOut(); $("#video1")[0].src += "?autoplay=1"; }); $('.videoplay2').on('click', function() { $(this).fadeOut(); $("#video2")[0].src += "?autoplay=1"; }); $('.productvideo').on('click', function() { $(this).fadeOut(); $("#video_player")[0].play(); }); var locations = [ ['NATIONAL PRODUCTS LTD.', 22.298029, 114.176864, 4] ]; var map = new google.maps.Map(document.getElementById('map'), { zoom: 16, center: new google.maps.LatLng(22.298029, 114.176864), mapTypeId: google.maps.MapTypeId.ROADMAP }); var infowindow = new google.maps.InfoWindow(); var marker, i; for (i = 0; i < locations.length; i++) { marker = new google.maps.Marker({ position: new google.maps.LatLng(locations[i][1], locations[i][2]), map: map }); google.maps.event.addListener(marker, 'click', (function(marker, i) { return function() { infowindow.setContent(locations[i][0]); infowindow.open(map, marker); } })(marker, i)); }