/*---- cufon ----*/
  Cufon.replace('a', { fontFamily: 'ITC Franklin Gothic Std' });
  Cufon.replace('h2', { fontFamily: 'ITC Franklin Gothic Std' });
  Cufon.replace('h3', { fontFamily: 'ITC Franklin Gothic Std' });
  Cufon.replace('.caption', { fontFamily: 'ITC Franklin Gothic Std' });
  Cufon.replace('.subtitle', { fontFamily: 'ITC Franklin Gothic Std' });
  Cufon.replace('.explain', { fontFamily: 'ITC Franklin Gothic Std' });

/*---- galleria ----*/
 
  jQuery(function($) {
		$('.gallery').addClass('featured'); // adds new class name to maintain degradability
		$('.nav').css('display','none'); // hides the nav initially
		$('ul.featured').galleria({
			history   : false, // deactivates the history object for bookmarking, back-button etc.
			clickNext : false, // helper for making the image clickable. Let's not have that in this example.
			insert    : undefined, // the containing selector for our main image.
			
			onImage   : function() { $('.nav').css('display','block');Cufon.now();} // shows the nav when the image is showing
		});
	});
  
/*---- tooltip ----*/
  $(document).ready(function() { 
      $(".secondary_thumb").tooltip({
          effect: 'slide',
          position: 'top center',
          relative:	'false'});  
  });