/*
//Feature Property Slide 
$(document).ready(function(){
	$(".feature-property-btn").click(function(){
		$(".feature-property-panel").slideToggle("slow");
		$(this).toggleClass("active"); return false;
	});
});


//Need Help Moving Slide 
$(document).ready(function(){
	$(".need-moving-btn").click(function(){
		$(".need-moving-panel").slideToggle("slow");
		$(this).toggleClass("active"); return false;
	});
});


//Property Alert Slide 
$(document).ready(function(){
	$(".property-alert-btn").click(function(){
		$(".property-alert-panel").slideToggle("slow");
		$(this).toggleClass("active"); return false;
	});
});


//Quick Search Slide 
$(document).ready(function(){
	$(".quick-search-btn").click(function(){
		$(".quick-search-panel").slideToggle("slow");
		$(this).toggleClass("active"); return false;
	});
});

 */

$(document).ready(function () {
 
	$('.sliding-panels > div').hover(
		function() {
			if($('.sliding-panels > div > div').not(':visible')) {
				$('.sliding-panels > div > div').slideDown('slow');
			}
		},
		function () {
		
		}
	)
 
 
})

