/**
 * Panelslide
 */


$(document).ready(function(){

	$(".btn-slide").click(function(){
		$("#panel").slideToggle("slow");
		$(this).toggleClass("active"); 
		$("#panel").html('<iframe src="/contact/contact-form.php" scrolling="no" width="870" align="top" frameborder="0" height="100"></iframe>');

		return false;
	});
	
	 
});
