// SET SIDEBAR HEIGHT
//$(document).ready(function(){
//	var wrapperHeight = $('.wrapperPadding').outerHeight();
//	$('#sidebar').height(wrapperHeight+300);
//});

// FORM VALIDATION AND TOOLTIP
$(document).ready(function() {
	$("#signupform").validationEngine({
		promptPosition: "topRight" // OPENNING BOX POSITION, IMPLEMENTED: topLeft, topRight, bottomLeft,  centerRight, bottomRight
	});
	$('#free-trial').validationEngine({
		promptPosition: "topRight" // OPENNING BOX POSITION, IMPLEMENTED: topLeft, topRight, bottomLeft,  centerRight, bottomRight
	});
	$('#signupform').validationEngine({
		promptPosition: "topRight" // OPENNING BOX POSITION, IMPLEMENTED: topLeft, topRight, bottomLeft,  centerRight, bottomRight
	});
});

// SIGNUP SIDEBAR 'PRIVACY' EXPAND COLLAPSE
$(document).ready(function() {
						   
	$("#ss-privacy-details").hide();
	
	$("#ss-privacy-button").click(function() {
		$("#ss-privacy-details").slideToggle(400);
		//$("#ss-privacy-details").show("slide", { direction: "down" }, 1000);
	});
});

// FREE TRIAL PRIVACY EXPAND COLLAPSE
$(document).ready(function(){
	$('#trial-privacy-details').hide();
	$('#trial-privacy-button').click(function(){
		$('#trial-privacy-details').slideToggle(400);
	});
});

// HOST OR ATTEND MEETING
$(document).ready(function(){
	$('#host').add('#attend').boxy();
});

// PRICING PAGE - EXPAND COLLAPSE WITHOUT VIDEO CONFERENCING
$(document).ready(function(){
	$('#without-video').click(function(){
		$('#prices-without').slideToggle(400);
	});
});

// FAQ 'QUESTIONS AND ANSWERS' EXPAND COLLAPSE
$(document).ready(function() {
	$('#faq div.answer').hide();	
	$('div.question').click(function() {	
		var answerDiv = $(this).next('div.answer');		
		if($(answerDiv).is(':hidden')) {
			$('#faq div.answer:visible').slideUp({
				duration: 400,
				easing: 'easeInOutSine'});
			$(answerDiv).slideDown({
				duration: 400,
				easing: 'easeInOutSine'});						
		}else{
			$(answerDiv).slideUp({
			duration: 400, 
			easing: 'easeInOutSine'});
		}															
	});
});