//Cufon
Cufon.replace('h1', {
	hover: true
});
Cufon.replace('h2', {
	hover: true
});
Cufon.replace('.cufon', {
 hover: true
});
Cufon.replace('ul.nav li a', {
  hover: true
});

Cufon.replace('.cform label', {
  hover: true
});



$(document).ready(function() {
    $('.slideshow').cycle({
		fx: 'fade' // choose your transition type, ex: fade, scrollUp, scrollRight, shuffle, zoom, curtainX, etc...
	});
});


						
$(document).ready(function(){
						   $(".fade").fadeTo("100", 0.3); // This sets the opacity of the thumbs to fade down to 30% when the page loads
						   $(".fade").hover(function(){
						   $(this).fadeTo("100", 1.0); // This should set the opacity to 100% on hover
						   },function(){
						   $(this).fadeTo("100", 0.3); // This should set the opacity back to 30% on mouseout
							   	});
						   });


$(document).ready(function() {
			$("a.zoom").fancybox();

			$("a.zoom1").fancybox({
				'overlayOpacity'	:	0.7,
				'overlayColor'		:	'#FFF'
			});

			$("a.zoom2").fancybox({
				'zoomSpeedIn'		:	500,
				'zoomSpeedOut'		:	500,
				'overlayShow'		:	false
			});
		});