$(document).ready(function(){

	//Hide (Collapse) the toggle containers on load
	$(".toggle_container").hide(); 

	//Switch the "Open" and "Close" state per click
	$("h4.trigger").toggle(function(){
		$(this).addClass("active");
		}, function () {
		$(this).removeClass("active");
	});

	//Slide up and down on click
	$("h4.trigger").click(function(){
		$(this).next(".toggle_container").slideToggle("slow");
	});



	//Switch the "Open" and "Close" state per click
	$("h4.trigger_a").toggle(function(){
		$(this).removeClass("active");
		}, function () {
		$(this).addClass("active");
	});

	//Slide up and down on click
	$("h4.trigger_a").click(function(){
		$(this).next(".toggle_container_a").slideToggle("slow");
	});


$("#sendVoteResult").click(function(){
	var formvars = $("#Poll1").serialize();	
	$.get( 'http://service.coraltravel.com.ua/poll/vote/', $("#Poll1").serialize(), "jsonp");
	$("#Poll1").html("Thanks for your vote!");
	alert ( 'Thanks for your vote!' );
	});

});