$(function(){

		// Accordion
		$(".accordion").accordion({ 
			header: "h3",
			autoHeight: false
		});


		// Datepicker
		// $('.datepicker').datepicker({
			// dateFormat: 'yy-mm-dd',
			// inline: true
		// });
		
		// $('.selectable').selectable(
			// { cancel: '.flight_box div' }
		// );
		
		
		//Galeria popup
		$("#dialog_gallery").dialog({
		    autoOpen: false,
			bgiframe: true,
			width: 600,
			height: 400,
			modal: true
		});
		
		$('.gallery_link_box input').click(function() {
					$('#dialog_gallery').dialog('open');
					return false;
		});
		
		//Kedvezmeny kod
		$('#discount-submit').click(function(){
					var code = $('#discount_code').val();
					var url = $('#discount-submit-url').val();
					
					var submitForm =  document.createElement("FORM");
					var codeElement = document.createElement("INPUT");
					codeElement.name = "code";
					codeElement.value = code;
					submitForm.method = "POST";
					submitForm.action = url;
					submitForm.appendChild(codeElement); 
					document.body.appendChild(submitForm);
					
					submitForm.submit();
		});
		
});