// JavaScript Document
$(function() {
	Cufon.replace('h1'); 
	Cufon.replace('h3'); // Works without a selector engine
	Cufon.replace('.button'); 
	Cufon.replace('.special_font'); 
	Cufon.replace('h2 a', {
	hover: true
	}); 
	Cufon.replace('h2'); 
	Cufon.replace('#navigation a', {
	hover: true
	});
});
$(function() {
	//Set the default directory to find the images needed
	//by the plugin (closebtn.png, blank.gif, loading images ....)
	$.fn.fancyzoom.defaultsOptions.imgDir='/images/'; //very important must finish with a /
 
	// Select all links in object with gallery ID using the defaults options
	$('#galleryzoom a').fancyzoom({Speed:400,showoverlay:false}); 
 
	// Select all links with tozoom class, set the open animation time to 1000
	$('a.tozoom').fancyzoom({Speed:1000});
 	
	//new rev > 1.2
	//apply fancyzoom effect on all image whose class is fancyzoom !!
	$('img.fancyzoom').fancyzoom();
});



