﻿$(document).ready(function(){
	$("#v-price").hide();
	$("#v-description").hide();
	$("#v-location").hide();
	
	$("h3.v-price").click(function(){;
		$("#v-price").slideToggle("fast");
	});
	$("h3.v-description").click(function(){;
		$("#v-description").slideToggle("fast");
	});
	$("#villa-view-promo").click(function(){;
		$("#v-description").slideToggle("fast");
		$("h3.v-description").addClass("active");
	});	
	$("h3.v-features").click(function(){;
		$("#v-features").slideToggle("fast");
	});	
	$("h3.v-location").click(function(){;
		$("#v-location").slideToggle("fast");
	});	
	
	$(".villa-view-promo").toggle(function(){
		$("h3.v-features").removeClass("active");
		}, function () {
		$("h3.v-features").addClass("active");
	});
	
	$(".villa-view-promo").toggle(function(){	
		$("h3.v-description").removeClass("active");
		}, function () {
		$("h3.v-description").addClass("active");		
	});
	
	$("h3.v-features").toggle(function(){
		$("h3.v-features").removeClass("active");
		}, function () {
		$("h3.v-features").addClass("active");
	});
	
	$("h3.v-price").toggle(function(){
		$("h3.v-price").addClass("active");
		}, function () {
		$("h3.v-price").removeClass("active");
	});
	$("h3.v-description").toggle(function(){
		$("h3.v-description").addClass("active");
		}, function () {
		$("h3.v-description").removeClass("active");
	});
	$("h3.v-location").toggle(function(){
		$("h3.v-location").addClass("active");
		}, function () {
		$("h3.v-location").removeClass("active");
	});
	
	

});

