$(document).ready(function() {
						   
	var trigger_height = $(".toggler .trigger").height();
	var content_height = $(".toggler .content").height();
	
	if ($(document).getUrlParam("order") == 'true') {
		
		$(".toggler").css({'top': -trigger_height - content_height}).delay(1500).animate({
			top: '0px'
		});
		
		
		$(".trigger").toggle(
		
			function () {
			
				$(".toggler").animate({
					top: -content_height
				});
				
				$(this).toggleClass("active");
				
			},
			
			function () {
				
				$(".toggler").animate({
					top: '0px'
				});
				
				$(this).toggleClass("active");
				
			}
		).toggleClass("active");;
		
	} else {
		
		$(".toggler").css({'top': -trigger_height - content_height}).delay(1500).animate({
			top: -content_height
		});
		

		$(".trigger").toggle(
		
			function () {
				
				$(".toggler").animate({
					top: '0px'
				});
				
				$(this).toggleClass("active");
				
			},
			
			function () {
			
				$(".toggler").animate({
					top: -content_height
				});
				
				$(this).toggleClass("active");
				
			}
			
		);

	}
	
		
});
