$(document).ready(function(){
	
	$(".toggle_container").hide();

	$("span.trigger").click(function(){
		$(this).toggleClass("active").next().slideToggle("slow");
	});
	
	
	
	
	$( "#dialog" ).dialog({ buttons: { "Ok": function() { $(this).dialog("close"); } } });	
	$("#dialog_reg").dialog({
		
		height: 'auto',
		width: '500px',
		padding: '15px',
		modal: true,
		buttons: {
			Ok: function() {
				$(this).dialog("close");
			}
		}


		
	});


	$( "#dialog_basket" ).dialog({ 
		autoOpen: false,
		 buttons: { "Ok": function() { $(this).dialog("close"); } } 
	});

});

