function PageInit()
{
	$(".jqueryList").uniform();
	
	$('#status').bind("change", function() {
		$('#form-status').submit();
	});
	
	$('#country').bind("change", function() {
		$('#form-country').submit();
	});
	
	$('#language').bind("change", function() {
		$('#form-language').submit();
	});

	jQuery.fn.slider();
	
	$('#gateway #country').bind("change", function() 
	{
		if($(this).val() != '')
		{
			$('#gateway #status').removeAttr("disabled");
		}
		else
		{
			$('#gateway #status').attr("disabled", true); 
		}
	});
	
	$('#gateway #status').bind("change", function() 
	{
		var s = $(this).val();
		if(s == 'private')
		{
			$('#gateway #login-form-private').fadeIn('normal');
			$('#gateway #login-form-prescriber').fadeOut('normal');
			$('#gateway #login-form-distributor').fadeOut('normal');
		}
		else if(s == 'prescriber')
		{
			$('#gateway #login-form-private').fadeOut('normal');
			$('#gateway #login-form-distributor').fadeOut('normal');
			$('#gateway #login-form-prescriber').fadeIn('normal');
		}
		else if(s == 'distributor')
		{
			$('#gateway #login-form-private').fadeOut('normal');
			$('#gateway #login-form-prescriber').fadeOut('normal');
			$('#gateway #login-form-distributor').fadeIn('normal');
		}
	}).change();
    
    $('div#menuVertical div').each(function() {
    	$(this).addClass("doContent");
    });
    
    $('div#menuVertical a[href=#]').click(function(event) {
    
    	event.preventDefault();
    	
    	var current = $(this).next('div').addClass('current');
	
		$('div#menuVertical div').each(function() {
		
			if($(this).is(':visible') && !$(this).hasClass('current'))
			{
				$(this).slideUp('normal');
			}
		});
		
		current.removeClass('current');
		$(this).toggleClass("smOpen");
		current.slideToggle('normal');
	});
	
	$("a.zoom").fancybox({ 
		'overlayShow': false,
		'zoomSpeedIn': 400,
		'zoomSpeedOut': 300,
		'overlayShow': true,
		'enableEscapeButton': false,
		'hideOnOverlayClick': true
	});
	
	/*$("ul.galleryRea").PikaChoose({ 
		'show_captions'	: true,
		'slide_enabled'	: false,
		'auto_play'		: false,
		'show_prev_next': false,
		'slide_speed'	: 20,
		'thumb_width'	: 130,
		'thumb_height'	: 62,
		'delay_caption' :false
	});*/
		
	$('.hoverOpacity img').animate({
		"opacity" : .7
	});
		
	$('.hoverOpacity img').hover(function() {
		$(this).stop().animate({"opacity" : 1}); 
	}, function() {
		$(this).stop().animate({"opacity" : .7}); 
	});
	
	$('.domtabContenu').css('display','none');
	
	$("#quickSearch #q").autocomplete("/water/fr/catalog/quickSearch.phtml", {
		width: 260,
		selectFirst: false
	}).result(function(event, item, formatted) {
  		location.href = item[1];
	});
	
	$('ul#galleryNav li a[href^=#]').click(function(event) {
    
    	event.preventDefault();
    	
    	var id = $(this).attr('href').substr(1);
    	
    	$('ul#galleryNav a').each(function() {
    		$(this).removeClass('current');
    	});
    	
    	$(this).addClass('current');
    	
    	$('ul#listPictures li').each(function() {
    		$(this).hide();
    	});
    	
    	var current = $('#picture-'+id).show();
	});
	
	$("#register-prescriber").validate();
	$("#lost-password-prescriber").validate();
	
	$("#register-distributor").validate();
	$("#lost-password-distributor").validate();
	
};
