$(document).ready(function(){	
jQuery("#faq").easySlider({
				nextId: "faqnext",
				prevId: "faqprev",
			    auto:	true
			});
jQuery(".thumb img").hover(
function() {
jQuery(this).stop().animate({"opacity": "0.2"}, "slow");
},
function() {
jQuery(this).stop().animate({"opacity": "1"}, "fast");
});
	
	jQuery("a.group").fancybox({
		'transitionIn'	:	'elastic',
		'transitionOut'	:	'elastic',
		'speedIn'		:	600, 
		'speedOut'		:	200, 
		'overlayShow'	:	true
	});
	jQuery("#wizard").formToWizard({ submitButton: 'send1,send2' })
});
