// JavaScript Document


//$(function() {
//
//	// if the function argument is given to overlay,
//	// it is assumed to be the onBeforeLoad event listener
//	$("a[rel]").overlay({
//
//		mask: 'darkred',
//		effect: 'apple',
//
//		onBeforeLoad: function() {
//
//			// grab wrapper element inside content
//			var wrap = this.getOverlay().find(".contentWrap");
//
//			// load the page specified in the trigger
//			wrap.load(this.getTrigger().attr("href"));
//		}
//
//	});
//});




function ShowForm () {
	
	$("#signup").overlay({

                       // custom top position
                       top: 10,

                       // some mask tweaks suitable for facebox-looking dialogs
                       mask: {

                           // you might also consider a "transparent" color for the mask
                           color: '#333',

                           // load mask a little faster
						   effect: 'apple'

                       },

                       // disable this for modal dialog-type of overlays
                       closeOnClick: false,

                       // load it immediately after the construction
                       load: true

                   });
	
	$("#centrale2").hide();
	$("#bannerQues").hide();
}
