// JavaScript Document
$(document).ready(function(){
		
//EZE Breeze	
	
	$('.eze-caption').click(function () {
     $(this).toggleClass("down");
	});
	
	
	$('.eze-caption').toggle(
		function()
		{
  	$('.eze-container').animate({
  		bottom: "0px"
 		}, 500);
	},
		function()
		{
  	$('.eze-container').animate({
  		bottom: "-164px"
  		}, 500);     
	});
	
//Nature Space	
	$('.ns-caption').click(function () {
     $(this).toggleClass("down");
	});

	
	$('.ns-caption').toggle(
		function()
		{
  	$('.ns-container').animate({
  		bottom: "0px"
 		}, 500);
	},
		function()
		{
  	$('.ns-container').animate({
  		bottom: "-164px"
  		}, 500);     
	});
	
//Windows and Doors	
	$(".wd-caption").click(function () {
     $(this).toggleClass("down");
	});

	
	$('.wd-caption').toggle(
		function()
		{
  	$('.wd-container').animate({
  		bottom: "0px"
 		}, 500);
	},
		function()
		{
  	$('.wd-container').animate({
  		bottom: "-164px"
  		}, 500);     
	});
			
//SunFlex	
	$(".sf-caption").click(function () {
     $(this).toggleClass("down");
	});

	
	$('.sf-caption').toggle(
		function()
		{
  	$('.sf-container').animate({
  		bottom: "0px"
 		}, 500);
	},
		function()
		{
  	$('.sf-container').animate({
  		bottom: "-164px"
  		}, 500);     
	});			
			
			



		
		
}); //the end of the document ready function