/* fancybox */



jQuery(function(){
      jQuery.fn.getTitle = function() {
      var arr = jQuery("a.fancybox");
      jQuery.each(arr, function() {
      var title = jQuery(this).children("img").attr("title");
      jQuery(this).attr('title',title);
      })
    }

    // Supported file extensions
    var thumbnails = 'a.fancybox';

  
    jQuery(thumbnails).addClass("fancybox").attr("rel","fancybox").getTitle();

    jQuery("a.fancybox").fancybox({
    'imageScale': true,
    'padding': 10,
    'zoomOpacity': true,
    'zoomSpeedIn': 500,
    'zoomSpeedOut': 500,
    'overlayShow': true,
    'hideOnContentClick': false,
    'centerOnScroll': true
  });

})


jQuery(function(){
	$('#loopedSlider').loopedSlider({
			autoStart: 5500,
			restart: 5000
		});
});

