$(document).ready(function () { /* Gallery */ if ($('#objectUspSlideshow').length != 0) { Galleria.loadTheme('/fw2011/js/galleria/themes/classic/galleria.classic.min.js'); $("#objectUspSlideshow").galleria({ transition: 'fade', _toggleInfo: false, width: 940, height: 345 }); } /*if ($('#objectSlideshow').length != 0) { Galleria.loadTheme('/fw2011/js/galleria/themes/classic/galleria.classic.js'); $("#objectSlideshow").galleria({ transition: 'fade', _toggleInfo: true, width: 'auto', height: 525 }); }*/ /* Clear textboxes */ $('.clearTextBox').focus(function () { if ($(this).val() == $(this)[0].title) { $(this).addClass("clearTextBoxFocus"); $(this).val(""); } }).blur(function () { if ($(this).val() == '') { $(this).removeClass("clearTextBoxFocus"); $(this).val($(this)[0].title); } }); $("a.fancy").fancybox({ 'transitionIn' : 'none', 'transitionOut' : 'none', 'titlePosition' : 'over', 'cyclic' : true, 'titleFormat' : function(title, currentArray, currentIndex, currentOpts) { return 'Bild ' + (currentIndex + 1) + ' / ' + currentArray.length + (title.length ? '   ' + title : '') + ''; } }); /* Google Maps */ var center = new google.maps.LatLng(59.592256, 15.418194); var pin = new google.maps.LatLng(59.592256, 15.418194); var myOptions = { zoom: 8, center: center, mapTypeId: google.maps.MapTypeId.ROADMAP }; var map = new google.maps.Map(document.getElementById("gmap"), myOptions); var marker = new google.maps.Marker({ map: map, draggable: true, animation: google.maps.Animation.DROP, position: pin }); });