// JavaScript Document

$(document).ready(function(){
					
	$("#membership_type").click(function(){
		$('#Membertype').show(1700);
	});
	
	//$.fn.fancyzoom.defaultsOptions.imgDir='../user_pics/'; //very important must finish with a /

$('a.zoom').fancyzoom({
    	overlayColor: '#000000',
    	overlay: 0.6,
    	imagezindex:100,
    	showoverlay:true,
    	Speed:1000,
    	shadow:true,
    	shadowOpts:{ color: "#000", offset: 4, opacity: 0.2 },
    	imgDir:'ressources/',
    	imgResizeScript:null,
    	autoresize:true
 });

	$(".searcher").hover(function(){
		$('.search_icon').show(1700);
	});
	
	$(".slide").click(function(){
	    $(this).next('div').show(1700);

	});


	

	
 });

